Skip to content

Commit 73d7689

Browse files
authored
fix: add default return when invalidation is skipped (#1938)
1 parent bf05f62 commit 73d7689

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/shell/services/instance.ts

+2
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,8 @@ export const instanceApi = createApi({
205205
if (!arg.skipInvalidation) {
206206
return [{ type: "ContentModelFields", id: arg.modelZUID }];
207207
}
208+
209+
return [];
208210
},
209211
}),
210212
updateContentModelField: builder.mutation<

0 commit comments

Comments
 (0)