We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 471c31a commit fbcbb0cCopy full SHA for fbcbb0c
package/src/__tests__/offline-support/offline-feature.js
@@ -341,7 +341,7 @@ export const Generic = () => {
341
await waitFor(async () => {
342
expect(screen.getByTestId('channel-list')).toBeTruthy();
343
await expectAllChannelsWithStateToBeInDB(screen.queryAllByLabelText);
344
- });
+ }, { timeout: 5000 });
345
});
346
347
it('should fetch channels from the db correctly even if they are empty', async () => {
package/src/components/Message/hooks/useMessageActionHandlers.ts
@@ -1,7 +1,7 @@
1
import { useMemo } from 'react';
2
import { Alert } from 'react-native';
3
4
-import { LocalMessage, UserResponse } from 'stream-chat';
+import { UserResponse } from 'stream-chat';
5
6
import { useUserMuteActive } from './useUserMuteActive';
7
0 commit comments