Re-add 2 missing t calls

This commit is contained in:
Michael Telatynski
2023-11-20 13:22:40 +00:00
parent cdbf4cac01
commit cd78f25936

View File

@@ -72,7 +72,7 @@ export const UserMenu: FC<Props> = ({
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<Props> = ({
if (!isPasswordlessUser && !preventNavigation) {
arr.push({
key: "logout",
label: "action.sign_out",
label: t("action.sign_out"),
icon: LogoutIcon,
dataTestid: "usermenu_logout",
});