Skip to content

Commit

Permalink
build: fix JS build
Browse files Browse the repository at this point in the history
I accidentally broke this three weeks ago and didn’t notice. 🙈
  • Loading branch information
chriskrycho committed Dec 15, 2024
1 parent 1e30ebc commit 9c5e736
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
main();

function main() {
const { Root, Container, Panel, Show, Close, ColorSchemes, NavMode } = getElements();

Expand Down Expand Up @@ -197,3 +195,5 @@ const enum Theme {
const THEME_VALUES: string[] = [Theme.System, Theme.Light, Theme.Dark];

const isTheme = (s: string): s is Theme => THEME_VALUES.includes(s);

main();

0 comments on commit 9c5e736

Please sign in to comment.