From 061f43c7d30482f743be3518654c646460d70985 Mon Sep 17 00:00:00 2001 From: abhay-raj19 Date: Sun, 26 May 2024 01:44:56 +0530 Subject: [PATCH] Fixes:#341/builds_passed Signed-off-by: abhay-raj19 --- apps/frontend/src/App.tsx | 2 -- apps/frontend/tsconfig.json | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/frontend/src/App.tsx b/apps/frontend/src/App.tsx index e0a1abfa..008ee563 100644 --- a/apps/frontend/src/App.tsx +++ b/apps/frontend/src/App.tsx @@ -5,7 +5,6 @@ import { Game } from './screens/Game'; import Login from './screens/Login'; import { Suspense } from 'react'; import { RecoilRoot } from 'recoil'; -import { useUser } from '@repo/store/useUser'; import { Loader } from './components/Loader'; import { Layout } from './layout'; @@ -22,7 +21,6 @@ function App() { } function AuthApp() { - const user = useUser(); return ( diff --git a/apps/frontend/tsconfig.json b/apps/frontend/tsconfig.json index 8aaf2aaf..caaa1e07 100644 --- a/apps/frontend/tsconfig.json +++ b/apps/frontend/tsconfig.json @@ -15,7 +15,7 @@ "jsx": "react-jsx", "baseUrl": ".", "paths": { - "@/*": ["./*", "./public/*"] + "@/*": ["./*","src/*", "./public/*"] }, /* Linting */