Skip to content

Commit

Permalink
Fix sync
Browse files Browse the repository at this point in the history
  • Loading branch information
gschier committed Jan 31, 2025
1 parent 6ab9c1c commit be0ef7a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src-web/init/sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ function isModelRelevant(workspaceId: string, m: AnyModel) {
m.model !== 'folder' &&
m.model !== 'environment' &&
m.model !== 'http_request' &&
m.model !== 'grpc_request'
m.model !== 'grpc_request' &&
m.model !== 'websocket_request'
) {
return false;
} else if (m.model === 'workspace') {
Expand Down

0 comments on commit be0ef7a

Please sign in to comment.