We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df27961 commit d617fc5Copy full SHA for d617fc5
frontend/src/services/actions/auth.tsx
@@ -170,8 +170,8 @@ export const login =
170
171
export const logout = () => async (dispatch: AppDispatch) => {
172
// Clear chat conversation data on logout for security
173
- sessionStorage.removeItem("currentConversation");
174
-
+ sessionStorage.removeItem('currentConversation');
+
175
dispatch({
176
type: LOGOUT,
177
});
@@ -207,7 +207,7 @@ export const reset_password_confirm =
207
uid: string,
208
token: string,
209
new_password: string,
210
- re_new_password: string,
+ re_new_password: string
211
): ThunkType =>
212
async (dispatch: AppDispatch) => {
213
const config = {
0 commit comments