Skip to content

Commit

Permalink
fix: bonked sidebar text.
Browse files Browse the repository at this point in the history
Signed-off-by: Sahil Suman <[email protected]>
  • Loading branch information
sahilsuman933 committed Feb 2, 2024
1 parent ae0fb45 commit 8b4dda8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function Sidebar({
if (content.children && content.children.length > 0) {
// This is a folder with children
return (
<AccordionItem key={content.id} value={`item-${content.id}`}>
<AccordionItem key={content.id} value={`item-${content.id}`} className='text-gray-900 dark:text-white'>
<AccordionTrigger>{content.title}</AccordionTrigger>
<AccordionContent>
{/* Render the children of this folder */}
Expand Down

0 comments on commit 8b4dda8

Please sign in to comment.