Skip to content

Commit 1a97231

Browse files
Merge pull request #10898 from sadohpv/fix-cached-clan-list
251126 - WEB/DESKTOP - Fix cached clan list
2 parents cf9f334 + a711efe commit 1a97231

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

libs/components/src/lib/components/VoiceChannel/MyVideoConference/useDeepFilterNet3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export const useDeepFilterNet3 = (options?: UseDeepFilterNet3Options) => {
156156
});
157157
processorsMap.clear();
158158
};
159-
}, [room, localParticipant, sampleRate]);
159+
}, [room, localParticipant, sampleRate, enabled]);
160160

161161
useEffect(() => {
162162
if (!enabled || !room || !localParticipant) {

libs/store/src/lib/auth/auth.slice.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ export const logOut = createAsyncThunk('auth/logOut', async ({ device_id, platfo
222222
thunkAPI.dispatch(walletActions.setLogout());
223223
thunkAPI.dispatch(listChannelsByUserActions.removeAll());
224224
clearApiCallTracker();
225-
const restoreKey = ['persist:apps', 'persist:categories', 'persist:clans', 'current-theme', 'hideNotificationContent', 'i18nextLng'];
225+
const restoreKey = ['persist:apps', 'current-theme', 'hideNotificationContent', 'i18nextLng'];
226226
if (sessionState) {
227227
restoreKey.push('mezon_session');
228228
}

0 commit comments

Comments
 (0)