Skip to content

Commit 94a3c32

Browse files
committed
remove auth testing in app.tsx
- replace for now with placeholder
1 parent dbca543 commit 94a3c32

1 file changed

Lines changed: 4 additions & 14 deletions

File tree

src/App.tsx

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,11 @@
1-
import { useConvexAuth } from 'convex/react';
2-
import { SignIn, SignOut } from './Auth';
31
import './App.css';
42

53
function App() {
6-
const { isAuthenticated, isLoading } = useConvexAuth();
7-
8-
if (isLoading){
9-
return (
10-
<div>
11-
Loading...
12-
</div>
13-
)
14-
}
4+
155
return (
16-
<>
17-
{isAuthenticated ? <SignOut /> : <SignIn />}
18-
</>
6+
<div>
7+
App
8+
</div>
199
)
2010
};
2111

0 commit comments

Comments
 (0)