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); }