Fix the settings label (#1936)

We were displaying the raw translation key rather than the translated text.
This commit is contained in:
Robin
2023-11-29 13:01:45 -05:00
committed by GitHub
parent 22ac156085
commit bbe1043289

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