Skip to content

Commit 7f307c4

Browse files
jdamcdclaude
andcommitted
Set UK as default home country and update footer text
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 02b0721 commit 7f307c4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ function App() {
295295
{/* Footer */}
296296
<footer className="bg-white dark:bg-gray-800 border-t border-gray-200 dark:border-gray-700 px-4 py-3 mt-auto">
297297
<div className="max-w-7xl mx-auto text-center text-xs md:text-sm text-gray-500 dark:text-gray-400">
298-
All data is processed locally in your browser. Use import / export to back up your trip history. <a href="https://github.com/jdamcd/trip-map" target="_blank" rel="noopener noreferrer" className="hover:text-gray-700 dark:hover:text-gray-300 underline">Source code on GitHub</a>.
298+
All data is processed locally in your browser. Use import & export to back up your trip history. <a href="https://github.com/jdamcd/trip-map" target="_blank" rel="noopener noreferrer" className="hover:text-gray-700 dark:hover:text-gray-300 underline">Source code on GitHub</a>.
299299
</div>
300300
</footer>
301301
</div>

src/lib/storage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function saveHomeCountry(countryCode: string): void {
3737
}
3838

3939
export function loadHomeCountry(): string {
40-
return localStorage.getItem(HOME_COUNTRY_KEY) || '';
40+
return localStorage.getItem(HOME_COUNTRY_KEY) || 'GB';
4141
}
4242

4343
export function exportToJson(visits: CountryVisit[]): string {

0 commit comments

Comments
 (0)