Re-add 2 missing t calls
This commit is contained in:
@@ -72,7 +72,7 @@ export const UserMenu: FC<Props> = ({
|
|||||||
if (isPasswordlessUser && !preventNavigation) {
|
if (isPasswordlessUser && !preventNavigation) {
|
||||||
arr.push({
|
arr.push({
|
||||||
key: "login",
|
key: "login",
|
||||||
label: "action.sign_in",
|
label: t("action.sign_in"),
|
||||||
icon: LoginIcon,
|
icon: LoginIcon,
|
||||||
dataTestid: "usermenu_login",
|
dataTestid: "usermenu_login",
|
||||||
});
|
});
|
||||||
@@ -81,7 +81,7 @@ export const UserMenu: FC<Props> = ({
|
|||||||
if (!isPasswordlessUser && !preventNavigation) {
|
if (!isPasswordlessUser && !preventNavigation) {
|
||||||
arr.push({
|
arr.push({
|
||||||
key: "logout",
|
key: "logout",
|
||||||
label: "action.sign_out",
|
label: t("action.sign_out"),
|
||||||
icon: LogoutIcon,
|
icon: LogoutIcon,
|
||||||
dataTestid: "usermenu_logout",
|
dataTestid: "usermenu_logout",
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user