diff --git a/src/components/WelcomeScreen.test.tsx b/src/components/WelcomeScreen.test.tsx index a74f49b9..e6e1c173 100644 --- a/src/components/WelcomeScreen.test.tsx +++ b/src/components/WelcomeScreen.test.tsx @@ -47,7 +47,7 @@ describe('WelcomeScreen', () => { it('shows the simplified template option description', () => { render() - expect(screen.getByText('Download the Getting Started vault')).toBeInTheDocument() + expect(screen.getByText('Download the getting started vault')).toBeInTheDocument() expect(screen.queryByText(/~\/Documents\/Laputa/)).not.toBeInTheDocument() }) diff --git a/src/components/WelcomeScreen.tsx b/src/components/WelcomeScreen.tsx index aa629d39..5df6ae2f 100644 --- a/src/components/WelcomeScreen.tsx +++ b/src/components/WelcomeScreen.tsx @@ -273,7 +273,7 @@ function getWelcomeScreenPresentation( subtitle: 'Wiki-linked knowledge management for deep thinkers.\nChoose how to get started.', templateDescription: isOffline ? `Requires internet — clone later. Suggested path: ${defaultVaultPath}` - : 'Download the Getting Started vault', + : 'Download the getting started vault', title: 'Welcome to Tolaria', } } @@ -285,7 +285,7 @@ function getWelcomeScreenPresentation( subtitle: 'The vault folder could not be found on disk.\nIt may have been moved or deleted.', templateDescription: isOffline ? `Requires internet — clone later. Suggested path: ${defaultVaultPath}` - : 'Download the Getting Started vault', + : 'Download the getting started vault', title: 'Vault not found', } }