Add global search

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2022-08-26 16:08:58 +02:00
parent bfc936f57c
commit 48935e2168
216 changed files with 3646 additions and 2806 deletions

View File

@@ -50,7 +50,7 @@ export function deleteUserData(): void {
}
export async function logout(performServerLogout = true): Promise<void> {
const { mutate: logout } = provideApolloClient(apolloClient)(() =>
const { mutate: logoutMutation } = provideApolloClient(apolloClient)(() =>
useMutation(LOGOUT)
);
const { mutate: cleanUserClient } = provideApolloClient(apolloClient)(() =>
@@ -61,7 +61,7 @@ export async function logout(performServerLogout = true): Promise<void> {
);
if (performServerLogout) {
logout({
logoutMutation({
refreshToken: localStorage.getItem(AUTH_REFRESH_TOKEN),
});
}