Skip to content

Commit

Permalink
Fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
maneesht committed Feb 20, 2025
1 parent 054e943 commit 897a676
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/data-connect/test/unit/typings.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ describe('Typings', () => {
__abc: true
}
);
function myFn<Data, Variables>(queryRef: QueryRef<Data, Variables>): { data: Data } {
function myFn<Data, Variables>(
queryRef: QueryRef<Data, Variables>
): { data: Data } {
const data = {} as Data;
return { data };
}
Expand Down

0 comments on commit 897a676

Please sign in to comment.