diff --git a/src-web/components/SyncToFilesystemSetting.tsx b/src-web/components/SyncToFilesystemSetting.tsx index 2adc65bc..1a6402c2 100644 --- a/src-web/components/SyncToFilesystemSetting.tsx +++ b/src-web/components/SyncToFilesystemSetting.tsx @@ -23,7 +23,7 @@ export function SyncToFilesystemSetting({ const [isNonEmpty, setIsNonEmpty] = useState(null); return (
- Data directory {typeof value.initGit === 'boolean' && ' and Git'} + Data directory {isNonEmpty ? ( @@ -43,12 +43,11 @@ export function SyncToFilesystemSetting({ - ) : ( + ) : !value.filePath ? ( - Sync workspace data to folder as plain text files, ideal for backup and Git - collaboration. Environments are excluded in order to keep your secrets private. + Sync data to a folder for backup and Git integration. - )} + ) : null}