diff --git a/e2e/dashboard.test.ts b/e2e/dashboard.test.ts
index 66ea581..225eaf1 100644
--- a/e2e/dashboard.test.ts
+++ b/e2e/dashboard.test.ts
@@ -32,6 +32,7 @@ test.beforeEach(async ({ context }) => {
});
test('dashboard surfaces map stops, stats, and trip status', async ({ page }) => {
+ const screenshotPath = test.info().outputPath('dashboard.png');
const suffix = uniqueSuffix();
const pastStart = formatDate(-18);
const pastEnd = formatDate(-15);
@@ -72,4 +73,6 @@ test('dashboard surfaces map stops, stats, and trip status', async ({ page }) =>
await expect(page.getByTestId('stat-past-trips')).toHaveText('1');
await expect(page.getByTestId('stat-countries')).toHaveText('1');
+
+ await page.screenshot({ path: screenshotPath, fullPage: true });
});
diff --git a/src/routes/(protected)/dashboard/+page.svelte b/src/routes/(protected)/dashboard/+page.svelte
index 97c587c..5276a85 100644
--- a/src/routes/(protected)/dashboard/+page.svelte
+++ b/src/routes/(protected)/dashboard/+page.svelte
@@ -79,26 +79,16 @@
Overview
-- Welcome back, {data.session.user?.name ?? data.session.user?.email}. Here’s a quick pulse on - your travel story. -
-Overview
++ Welcome back, {data.session.user?.name ?? data.session.user?.email}. Here’s a quick pulse on your + travel story. +