We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8369359 commit dca0b1fCopy full SHA for dca0b1f
apps/desktop/src/utils/queries.ts
@@ -173,12 +173,15 @@ export function createCameraMutation() {
173
mutationFn: rawMutate,
174
}));
175
176
- return new Proxy(setCameraInput as typeof setCameraInput & { rawMutate: typeof rawMutate }, {
177
- get(target, key) {
178
- if (key === 'rawMutate') return rawMutate;
179
- return Reflect.get(target, key);
180
- }
181
- });
+ return new Proxy(
+ setCameraInput as typeof setCameraInput & { rawMutate: typeof rawMutate },
+ {
+ get(target, key) {
+ if (key === "rawMutate") return rawMutate;
+ return Reflect.get(target, key);
182
+ },
183
184
+ );
185
}
186
187
export function createCustomDomainQuery() {
0 commit comments