fix: a few things
All checks were successful
Release / publish (push) Successful in 1m32s

This commit is contained in:
2025-10-21 15:04:09 +02:00
parent 765d05ece1
commit f08437589a
2 changed files with 6 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
import ArtefactsView from '$lib/components/ArtefactsView.svelte';
import { page } from '$app/stores';
import { state } from '$lib/view.svelte';
let project = state.projects.find(({ uuid }) => $page.params.project == uuid);
let project = $derived(state.projects.find(({ uuid }) => $page.params.project == uuid));
</script>
<h1>Project Overview: {project?.name}</h1>