diff options
Diffstat (limited to 'components/Tweaks/index.tsx')
-rw-r--r-- | components/Tweaks/index.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/components/Tweaks/index.tsx b/components/Tweaks/index.tsx index afd0ea7..078ee99 100644 --- a/components/Tweaks/index.tsx +++ b/components/Tweaks/index.tsx @@ -48,6 +48,8 @@ export interface TweakProps { tags: string[] tagColors: TagColors setTagColors: any + coloring: string + setColoring: any } export const Tweaks = (props: TweakProps) => { @@ -67,6 +69,8 @@ export const Tweaks = (props: TweakProps) => { tags, tagColors, setTagColors, + coloring, + setColoring, } = props const [showTweaks, setShowTweaks] = usePersistantState('showTweaks', false) @@ -194,6 +198,10 @@ export const Tweaks = (props: TweakProps) => { highlightColor={highlightColor} setHighlightColor={setHighlightColor} threeDim={threeDim} + {...{ + coloring, + setColoring, + }} /> </AccordionPanel> </AccordionItem> |