From 6514efb430cfa11907b0ba08e9524343a8d042c2 Mon Sep 17 00:00:00 2001 From: DarkSky <25152247+darkskygit@users.noreply.github.com> Date: Sat, 13 Aug 2022 17:59:46 +0800 Subject: [PATCH] Update LayoutHeader.tsx --- libs/components/layout/src/header/LayoutHeader.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/components/layout/src/header/LayoutHeader.tsx b/libs/components/layout/src/header/LayoutHeader.tsx index b9f93dd3ee..2bada5a362 100644 --- a/libs/components/layout/src/header/LayoutHeader.tsx +++ b/libs/components/layout/src/header/LayoutHeader.tsx @@ -23,9 +23,9 @@ export const LayoutHeader = () => { const warningTips = useMemo(() => { if (!fsApiSupported()) { - return 'You are in DEMO mode. Changes will NOT be saved, you can SYNC DATA TO DISK with the latest version of Chromium based browser like Chrome/Edge'; + return 'Welcome to the AFFiNE demo. To begin saving changes you can SYNC DATA TO DISK with the latest version of Chromium based browser like Chrome/Edge'; } else if (!isLocalWorkspace) { - return 'You are in DEMO mode. Changes will NOT be saved unless you SYNC TO DISK'; + return 'Welcome to the AFFiNE demo. To begin saving changes you can SYNC TO DISK.'; } else { return 'AFFiNE is under active development and the current version is UNSTABLE. Please DO NOT store information or data'; }