Skip to content

Commit dca0b1f

Browse files
committed
formatting
1 parent 8369359 commit dca0b1f

File tree

3 files changed

+879
-529
lines changed

3 files changed

+879
-529
lines changed

apps/desktop/src/utils/queries.ts

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,15 @@ export function createCameraMutation() {
173173
mutationFn: rawMutate,
174174
}));
175175

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-
});
176+
return new Proxy(
177+
setCameraInput as typeof setCameraInput & { rawMutate: typeof rawMutate },
178+
{
179+
get(target, key) {
180+
if (key === "rawMutate") return rawMutate;
181+
return Reflect.get(target, key);
182+
},
183+
},
184+
);
182185
}
183186

184187
export function createCustomDomainQuery() {

0 commit comments

Comments
 (0)