Skip to content

Commit 4e3dc62

Browse files
committed
chore: format code and fix lint issues
1 parent c7e4f74 commit 4e3dc62

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

app/lib/services/voip/voipBlocksIncomingVideoconf.test.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ type CallStoreSlice = {
77
nativeAcceptedCallId: string | null;
88
};
99

10-
const mockGetState = jest.fn((): CallStoreSlice => ({
11-
call: null,
12-
nativeAcceptedCallId: null
13-
}));
10+
const mockGetState = jest.fn(
11+
(): CallStoreSlice => ({
12+
call: null,
13+
nativeAcceptedCallId: null
14+
})
15+
);
1416

1517
jest.mock('./useCallStore', () => ({
1618
useCallStore: {

0 commit comments

Comments
 (0)