From cd78f25936ec5a2e4794cb26c2ef5c89162f45da Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 20 Nov 2023 13:22:40 +0000 Subject: [PATCH] Re-add 2 missing t calls --- src/UserMenu.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/UserMenu.tsx b/src/UserMenu.tsx index ccab19d5..f485760a 100644 --- a/src/UserMenu.tsx +++ b/src/UserMenu.tsx @@ -72,7 +72,7 @@ export const UserMenu: FC = ({ if (isPasswordlessUser && !preventNavigation) { arr.push({ key: "login", - label: "action.sign_in", + label: t("action.sign_in"), icon: LoginIcon, dataTestid: "usermenu_login", }); @@ -81,7 +81,7 @@ export const UserMenu: FC = ({ if (!isPasswordlessUser && !preventNavigation) { arr.push({ key: "logout", - label: "action.sign_out", + label: t("action.sign_out"), icon: LogoutIcon, dataTestid: "usermenu_logout", });