ui: Make import_zone page a zone page to be able to delete it easily

This commit is contained in:
nemunaire 2024-01-11 16:42:20 +01:00
parent 865bd44332
commit 563735388a
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import type { Load } from '@sveltejs/kit';
export const load: Load = async({ parent }) => {
const data = await parent();
return {
...data,
isZonePage: true,
}
}