Fix the settings label

We were displaying the raw translation key rather than the translated text.
This commit is contained in:
Robin
2023-11-29 12:59:07 -05:00
parent c40ee6b8cc
commit 8b393611d6

View File

@@ -66,7 +66,7 @@ export const UserMenu: FC<Props> = ({
arr.push({
key: "settings",
icon: SettingsIcon,
label: "common.settings",
label: t("common.settings"),
});
if (isPasswordlessUser && !preventNavigation) {