diff options
Diffstat (limited to 'components/Sidebar/index.tsx')
-rw-r--r-- | components/Sidebar/index.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/Sidebar/index.tsx b/components/Sidebar/index.tsx index 141c26d..66728fd 100644 --- a/components/Sidebar/index.tsx +++ b/components/Sidebar/index.tsx @@ -49,6 +49,8 @@ export interface SidebarProps { setFilter: any tagColors: TagColors setTagColors: any + macros?: { [key: string]: string } + attachDir: string } const Sidebar = (props: SidebarProps) => { @@ -75,6 +77,8 @@ const Sidebar = (props: SidebarProps) => { setFilter, tagColors, setTagColors, + macros, + attachDir, } = props const { highlightColor } = useContext(ThemeContext) @@ -225,6 +229,8 @@ const Sidebar = (props: SidebarProps) => { outline, setOutline, collapse, + macros, + attachDir, }} /> </VStack> |