This commit is contained in:
JimmFly
2022-08-30 11:11:38 +08:00
parent e656941084
commit f475599f2f
10 changed files with 66 additions and 65 deletions
@@ -25,11 +25,11 @@ export const LayoutHeader = () => {
const warningTips = useMemo(() => {
if (!fsApiSupported()) {
return t('warningTips.isNotfsApiSupported');
return t('WarningTips.IsNotfsApiSupported');
} else if (!isLocalWorkspace) {
return t('warningTips.isNotLocalWorkspace');
return t('WarningTips.IsNotLocalWorkspace');
} else {
return t('warningTips.DoNotStore');
return t('WarningTips.DoNotStore');
}
}, [isLocalWorkspace, t]);