diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 3750cb2..ccfb7bc 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -8,7 +8,7 @@ import { diffChars } from "diff"; import MyMenu from "./components/menu"; import { type BookType, utils, write, writeFile } from "xlsx" import type { FetchResult } from "./types/interfaces"; -import { type Component, createEffect, createSignal, JSX, onMount, Show } from "solid-js"; +import { Accessor, type Component, createEffect, createSignal, JSX, onMount, Show } from "solid-js"; import { For, render } from "solid-js/web"; import Row from "./components/row"; import { arrowDownTray, check, eye, eyeSlash, funnel, magnifyingGlass, xMark } from "solid-heroicons/solid"; @@ -225,7 +225,7 @@ const TruthTablePage: Component = () => { { (option) => ( setHideValues(option) } option={ option } - currentValue={ hideValues() } /> + currentValue={ hideValues } /> ) } } itemsClassName={ "right-0" } @@ -240,7 +240,7 @@ const TruthTablePage: Component = () => { children={ { (option) => ( - setSortValues(option) } /> ) } @@ -346,7 +346,7 @@ export default TruthTablePage; interface SingleMenuItem { option: Option, - currentValue?: Option, + currentValue?: Accessor