fix: trying to fix error in matching code

This commit is contained in:
Max Richter
2025-09-28 14:40:29 +02:00
parent fb0b80be78
commit 57ea1f6e3e
12 changed files with 39 additions and 14 deletions

View File

@@ -38,7 +38,7 @@
}: Props = $props();
</script>
<div class="flex flex-1 flex-col overflow-hidden border-r border-gray-200 last:border-r-0">
<div class="relative flex flex-1 flex-col overflow-hidden border-r border-gray-200 last:border-r-0">
<div class="flex items-center border-b border-gray-200 bg-gray-50/50 px-4 py-3">
{#if status === 'success'}
<CheckCircleIcon class="mr-2 h-5 w-5 text-green-500" />

View File

@@ -4,7 +4,7 @@
</script>
<header class="sticky top-0 z-10 border-b border-gray-200 bg-white/80 backdrop-blur-sm">
<div class="container px-6 py-4">
<div class="px-6 py-4">
<div class="flex w-full items-center justify-between">
<div class="flex items-center gap-3">
<Logo />

View File

@@ -102,6 +102,7 @@ My favourite baguette recipe
dataStatus = 'error';
}
} else {
templateError = undefined;
jsonOutput = JSON.stringify(result.data, null, 2);
timings = result.timings;
templateStatus = 'success';

View File

@@ -1,4 +1,4 @@
<img src="/logo.svg" alt="logo" width="100%" />
<img src="/logo-2.svg" alt="logo" width="100%" />
<style>
img {

View File

@@ -0,0 +1 @@
export const prerender = true;