Skip to content

Commit

Permalink
fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyblasczyk committed Oct 18, 2024
1 parent 4777a5f commit 1e29ad4
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import { redirect } from "next/navigation";
import { IconPlane } from "@tabler/icons-react";

import { auth, isGoogleAuthEnabled, isOIDCAuthEnabled } from "@ctrlplane/auth";
import {
auth,
isCredentialsAuthEnabled,
isGoogleAuthEnabled,
isOIDCAuthEnabled,
} from "@ctrlplane/auth";
import { Button } from "@ctrlplane/ui/button";

import { LoginCard } from "../../LoginCard";
Expand All @@ -21,6 +26,7 @@ export default async function LoginInvitePage() {
<Button variant="outline">Sign up</Button>
</div>
<LoginCard
isCredentialsAuthEnabled={isCredentialsAuthEnabled}
isGoogleEnabled={isGoogleAuthEnabled}
isOidcEnabled={isOIDCAuthEnabled}
/>
Expand Down

0 comments on commit 1e29ad4

Please sign in to comment.