Skip to content

Commit

Permalink
Update LoginLink.tsx
Browse files Browse the repository at this point in the history
fix typescript
  • Loading branch information
fouteox authored Aug 3, 2024
1 parent d117d8d commit 18bd5ed
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions resources/ts/LoginLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import { router } from '@inertiajs/react'

interface LoginLinkProps {
className?: string;
email?: string;
guard?: string;
keyId?: string;
email?: string | null;
guard?: string | null;
keyId?: string | null;
label?: string;
redirectUrl?: string;
userAttributes?: Record<string, any>;
redirectUrl?: string | null;
userAttributes?: Record<string, any> | null;
}

export default function LoginLink({
Expand Down

0 comments on commit 18bd5ed

Please sign in to comment.