Skip to content

Commit

Permalink
chore(Linter): Removing file and fixing some small inter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
fforres authored and joseglego committed Apr 9, 2024
1 parent 6d9aab1 commit b752bb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 28 deletions.
2 changes: 2 additions & 0 deletions app/(transition)/(root)/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ const AuthPage: NextPage = () => {

useEffect(() => {
const url = new URL(window.location.href);
url.pathname = "/";
url.hash = "";
setUrl(url.toString());

// eslint-disable-next-line @typescript-eslint/no-floating-promises
Expand Down
4 changes: 3 additions & 1 deletion app/(transition)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ export default function Layout({ children }: { children: React.ReactNode }) {

const {
data: { subscription },
} = supabase.auth.onAuthStateChange((_event, session) => {});
} = supabase.auth.onAuthStateChange((_event, session) => {
// TODO: handle token
});

start().catch((e) => {
console.error(e);
Expand Down
27 changes: 0 additions & 27 deletions src/components/Auth/clerk.tsx

This file was deleted.

0 comments on commit b752bb0

Please sign in to comment.