79295663

Date: 2024-12-19 21:42:23
Score: 2
Natty:
Report link

Apparently the problem comes from the page.data and seems to be a bug (posted here and here.

Using data.personalMessage message instead of page.data.personalMessage is both a workaround and a better practice.

//+page.svelte
<script>
   const { data } = $props();
</script>
<TypewriterEffect>
   {@html data.personalMessage}
</TypewriterEffect>

Thanks to @brunnerh for the solution.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • User mentioned (1): @brunnerh
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: 16ar