Skip to content

Commit

Permalink
update join route to W24 interest form
Browse files Browse the repository at this point in the history
  • Loading branch information
shrey150 committed Jan 11, 2024
1 parent f50106f commit 3065011
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions pages/join.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ import Redirect from "../components/Redirect";
import SignIn from "../components/SignIn";

Check warning on line 3 in pages/join.tsx

View workflow job for this annotation

GitHub Actions / ci

'SignIn' is defined but never used. Allowed unused vars must match /^_/u
import useSupabase from "../hooks/useSupabase";

Check warning on line 4 in pages/join.tsx

View workflow job for this annotation

GitHub Actions / ci

'useSupabase' is defined but never used. Allowed unused vars must match /^_/u

const JoinPage: NextPage = () => {
const { user } = useSupabase();
return user ? (
<Redirect route="/dashboard" />
) : (
<SignIn isLoginPage={false} />
);
};
const JoinPage: NextPage = () => <Redirect route="https://tally.so/r/nW844N" />;

export default JoinPage;

0 comments on commit 3065011

Please sign in to comment.