Skip to content

Commit 0c2ebdf

Browse files
Update +page.svelte
1 parent 5908eb5 commit 0c2ebdf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/frontend/src/routes/(needs_onboarding)/(navbar_and_footer)

src/frontend/src/routes/(needs_onboarding)/(navbar_and_footer)/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
// Encryption progress states
6464
let encryptionProgress = $state(0);
6565
let isEncrypting = $state(false);
66-
let markdownDetails = $derived(configData.data?.site_description ?? '');
66+
let detailsMarkdown = $derived(configData.data?.site_description ?? '');
6767
6868
$effect(() => {
6969
const total = files.reduce((sum, file) => sum + file.size, 0);
@@ -869,7 +869,7 @@
869869
<div
870870
class="prose w-full max-w-none prose-zinc md:text-sm lg:text-lg lg:leading-relaxed dark:prose-invert"
871871
>
872-
{#await html_to_markdown(markdownDetails) then html}
872+
{#await html_to_markdown(detailsMarkdown) then html}
873873
{@html html}
874874
{/await}
875875
</div>

0 commit comments

Comments
 (0)