fix low level issues

This commit is contained in:
Davide Scaini
2026-03-31 23:22:12 +02:00
parent 8f91503cf7
commit 81438231b4
19 changed files with 126 additions and 44 deletions
+3 -1
View File
@@ -5,6 +5,8 @@
import RecordsView from './RecordsView.svelte';
import AthleteDrawer from './AthleteDrawer.svelte';
export let base: string = '/';
let athlete: AthleteJson | null = null;
let activities: ActivitySummary[] = [];
let loading = true;
@@ -106,7 +108,7 @@
<!-- Records tab -->
{:else if activeTab === 'records'}
<RecordsView {athlete} />
<RecordsView {athlete} {base} />
<!-- Profile tab -->
{:else if activeTab === 'profile'}