From 18bd5ed1a7e72fac761dff24d4846e3307398f95 Mon Sep 17 00:00:00 2001 From: Florian <88294294+fouteox@users.noreply.github.com> Date: Sat, 3 Aug 2024 15:44:23 +0200 Subject: [PATCH] Update LoginLink.tsx fix typescript --- resources/ts/LoginLink.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/ts/LoginLink.tsx b/resources/ts/LoginLink.tsx index b305e18..52c83d3 100644 --- a/resources/ts/LoginLink.tsx +++ b/resources/ts/LoginLink.tsx @@ -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; + redirectUrl?: string | null; + userAttributes?: Record | null; } export default function LoginLink({