Skip to content

Commit

Permalink
Merge branch 'main' into add-jinja-support-for-templating
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarrazin authored Mar 2, 2025
2 parents f73d768 + e707952 commit 97cba98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/lib/components/MobileNav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
beforeNavigate(() => {
isOpen = false;
panX = undefined;
});
let shouldFocusClose = $derived(isOpen && closeEl);
Expand Down
6 changes: 1 addition & 5 deletions src/lib/components/chat/MarkdownRenderer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,7 @@
tokens = processTokensSync(content, sources);
} else {
(async () => {
if (!browser) {
tokens = processTokensSync(content, sources);
} else {
tokens = await processContent(content, sources);
}
tokens = await processContent(content, sources);
})();
}
});
Expand Down

0 comments on commit 97cba98

Please sign in to comment.