We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5908eb5 commit 0c2ebdfCopy full SHA for 0c2ebdf
1 file changed
src/frontend/src/routes/(needs_onboarding)/(navbar_and_footer)/+page.svelte
@@ -63,7 +63,7 @@
63
// Encryption progress states
64
let encryptionProgress = $state(0);
65
let isEncrypting = $state(false);
66
- let markdownDetails = $derived(configData.data?.site_description ?? '');
+ let detailsMarkdown = $derived(configData.data?.site_description ?? '');
67
68
$effect(() => {
69
const total = files.reduce((sum, file) => sum + file.size, 0);
@@ -869,7 +869,7 @@
869
<div
870
class="prose w-full max-w-none prose-zinc md:text-sm lg:text-lg lg:leading-relaxed dark:prose-invert"
871
>
872
- {#await html_to_markdown(markdownDetails) then html}
+ {#await html_to_markdown(detailsMarkdown) then html}
873
{@html html}
874
{/await}
875
</div>
0 commit comments