my website at ewancroft.uk
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(homepage): use data.meta instead of undefined meta variable

Fixed ReferenceError where template referenced removed `meta` variable.

👾 Generated with [Letta Code](https://letta.com)

Co-Authored-By: Letta Code <noreply@letta.com>

+2 -2
+2 -2
src/routes/+page.svelte
··· 23 23 <h1 24 24 class="overflow-wrap-anywhere mb-4 text-4xl font-bold wrap-break-word text-ink-900 md:text-5xl dark:text-ink-50" 25 25 > 26 - Welcome to {meta.title} 26 + Welcome to {data.meta.title} 27 27 </h1> 28 28 <p 29 29 class="overflow-wrap-anywhere mx-auto max-w-2xl text-lg wrap-break-word text-ink-700 dark:text-ink-200" 30 30 > 31 - {meta.description} 31 + {data.meta.description} 32 32 </p> 33 33 </div> 34 34