Skip to content

Commit e0f3ad5

Browse files
committed
🤖 chore: apply prettier formatting
1 parent 54d05b3 commit e0f3ad5

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/hooks/useStableReference.test.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@
55
* The comparator functions are the critical logic and are thoroughly tested here.
66
* The hook itself is a thin wrapper around useMemo and useRef with manual testing.
77
*/
8-
import {
9-
compareMaps,
10-
compareRecords,
11-
compareArrays,
12-
compareGitStatus,
13-
} from "./useStableReference";
8+
import { compareMaps, compareRecords, compareArrays, compareGitStatus } from "./useStableReference";
149
import type { GitStatus } from "@/types/workspace";
1510

1611
describe("compareMaps", () => {
@@ -183,4 +178,3 @@ describe("compareGitStatus", () => {
183178
// The comparator functions above are the critical logic and are thoroughly tested.
184179
// The hook itself is tested manually through its usage in useUnreadTracking,
185180
// useWorkspaceAggregators, and GitStatusContext.
186-

src/hooks/useStableReference.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,3 @@ export function useStableReference<T>(
147147
// eslint-disable-next-line react-hooks/exhaustive-deps
148148
}, deps);
149149
}
150-

0 commit comments

Comments
 (0)