From 1b27ccf70e7fcb68e776081c14881dffad678334 Mon Sep 17 00:00:00 2001 From: Proddy Date: Sat, 8 Jul 2023 14:08:25 +0200 Subject: [PATCH] formatting --- interface/src/SignIn.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/SignIn.tsx b/interface/src/SignIn.tsx index 883e0cc62..355466201 100644 --- a/interface/src/SignIn.tsx +++ b/interface/src/SignIn.tsx @@ -55,7 +55,7 @@ const SignIn: FC = () => { const signIn = async () => { await callSignIn(signInRequest).catch((event) => { if (event.message === 'Unauthorized') { - toast.warn(LL.INVALID_LOGIN()); + toast.warning(LL.INVALID_LOGIN()); } else { toast.error(LL.ERROR() + ' ' + event.message); }