Rewrite login and register related queries using React Query

Change-Id: Ifb462a30b3100043b29aaa3db7c321950937cad1
diff --git a/client/src/App.tsx b/client/src/App.tsx
index ebebd81..ffc98bd 100644
--- a/client/src/App.tsx
+++ b/client/src/App.tsx
@@ -22,7 +22,7 @@
 import { json, LoaderFunctionArgs, Outlet, redirect } from 'react-router-dom';
 
 import WelcomeAnimation from './components/WelcomeAnimation';
-import { getAccessToken } from './utils/auth';
+import { getAccessToken } from './services/authQueries';
 import { apiUrl } from './utils/constants';
 
 export async function checkSetupStatus(): Promise<boolean> {