Skip to content

Commit fbcbb0c

Browse files
committed
fix: lint and tests
1 parent 471c31a commit fbcbb0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package/src/__tests__/offline-support/offline-feature.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ export const Generic = () => {
341341
await waitFor(async () => {
342342
expect(screen.getByTestId('channel-list')).toBeTruthy();
343343
await expectAllChannelsWithStateToBeInDB(screen.queryAllByLabelText);
344-
});
344+
}, { timeout: 5000 });
345345
});
346346

347347
it('should fetch channels from the db correctly even if they are empty', async () => {

package/src/components/Message/hooks/useMessageActionHandlers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useMemo } from 'react';
22
import { Alert } from 'react-native';
33

4-
import { LocalMessage, UserResponse } from 'stream-chat';
4+
import { UserResponse } from 'stream-chat';
55

66
import { useUserMuteActive } from './useUserMuteActive';
77

0 commit comments

Comments
 (0)