Skip to content

Commit

Permalink
fix: type fix for UserAuthForm args
Browse files Browse the repository at this point in the history
  • Loading branch information
hiporox committed Apr 29, 2024
1 parent 82e87e3 commit b601b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/space/common/components/UserAuthForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const UserAuthFormSchema = z.object({
}),
});

export function UserAuthForm({ className }: { className: string }) {
export function UserAuthForm({ className }: { className?: string }) {
const [isLoading, setIsLoading] = useState<boolean>(false);
const [userMessage, setUserMessage] = useState<string>("");
const supabase = createClient();
Expand Down

0 comments on commit b601b10

Please sign in to comment.