Compare commits

...

1 Commits

Author SHA1 Message Date
Robin
8b393611d6 Fix the settings label
We were displaying the raw translation key rather than the translated text.
2023-11-29 13:08:51 -05:00

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) {