diff --git a/src/routes/custom-formats/[databaseId]/[id]/testing/+page.svelte b/src/routes/custom-formats/[databaseId]/[id]/testing/+page.svelte index bd7e951..57532c6 100644 --- a/src/routes/custom-formats/[databaseId]/[id]/testing/+page.svelte +++ b/src/routes/custom-formats/[databaseId]/[id]/testing/+page.svelte @@ -9,9 +9,13 @@ import type { Column } from '$ui/table/types'; import type { PageData } from './$types'; import type { TestWithResult } from './+page.server'; + import { clear } from '$lib/client/stores/dirty'; export let data: PageData; + // Clear dirty state - this is a read-only listing page + clear(); + type Test = TestWithResult; type Condition = Test['conditions'][number];