Skip to content

Commit

Permalink
removes a comment that was messing up the layout
Browse files Browse the repository at this point in the history
  • Loading branch information
sdwalker62 committed May 6, 2024
1 parent 4f5dec1 commit f39fa81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
7 changes: 1 addition & 6 deletions frontend/src/routes/docs/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,7 @@
});
</script>

<!-- <div>
<h1 style:color="white">{data.path}</h1>
</div> -->

<div id="page-container" class="constrained-height" class:active={$leftPanelActive}>-->
<div id="page-container" class="constrained-height" class:active={$leftPanelActive}>
{#if $leftPanelActive}
<div id="folder-canvas" class="no-scroll-bar">
{#if $libraryVisible}
Expand Down Expand Up @@ -72,7 +68,6 @@
</label>
<button>Pull Documents</button>
</form>
<!-- <input slot="contents" id="urlInputBox" type="text" bind:value={tmp} />-->
</Modal>

<style>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/routes/docs/[...document]/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export const load: PageServerLoad = async ({ params }) => {
}

const docs = unified()
// @ts-expect-error fragment exists
.data('settings', { fragment: true })
.use(remarkParse)
.use(remarkMath)
Expand Down

0 comments on commit f39fa81

Please sign in to comment.