Skip to content

Commit

Permalink
Merge pull request #74 from tmr232/another-small-fix
Browse files Browse the repository at this point in the history
Some more silly mistakes
  • Loading branch information
tmr232 authored Jan 17, 2025
2 parents d560912 + 0ec75cc commit 76ebaf3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/WebviewRenderer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import { initialize as initializeUtils, type Parsers } from "./utils";
import { createEventDispatcher } from "svelte";
import { type ColorList, getLightColorList } from "../control-flow/colors";
import { Renderer } from "./renderer.ts";
import { Renderer, type RenderOptions } from "./renderer.ts";
type CodeAndOffset = { code: string; offset: number; language: Language };
Expand All @@ -22,6 +22,7 @@
export let trim: boolean = true;
export let flatSwitch: boolean = false;
export let highlight: boolean = true;
export let showRegions: boolean = false;
const dispatch = createEventDispatcher();
Expand Down Expand Up @@ -138,6 +139,7 @@
trim,
flatSwitch,
highlight,
showRegions,
},
colorList,
)}
Expand Down

0 comments on commit 76ebaf3

Please sign in to comment.