Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenOlano committed Nov 22, 2024
1 parent 219ee2c commit 2f90a39
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/app/directory/[id]/loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ export default function Loading() {
</div>
</main>
);
}
}
2 changes: 1 addition & 1 deletion src/components/club/listing/ContactButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const ContactButtons = ({ contacts }: contentButtonProps) => {
</Link>
</button>
)}
</Fragment>
</Fragment>
))}
</div>
);
Expand Down
12 changes: 6 additions & 6 deletions src/components/nav/SidebarItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const SidebarItems: FC<{ cat: allCats[number] }> = ({ cat }) => {
<Icon fill={active ? 'fill-blue-primary' : 'fill-slate-500'} />
)}
<h1
className={`text-base font-medium capitalize md:text-sm
transition-colors duration-200 ${
className={`text-base font-medium capitalize transition-colors
duration-200 md:text-sm ${
active
? 'text-blue-primary'
: 'text-slate-500 group-hover:text-blue-primary'
Expand All @@ -49,12 +49,12 @@ const SidebarItems: FC<{ cat: allCats[number] }> = ({ cat }) => {
{cat}
</h1>
</div>
<div className={`ml-auto transition-transform duration-200 ${
active || mouseOver ? 'translate-x-0' : '-translate-x-1'
<div
className={`ml-auto transition-transform duration-200 ${
active || mouseOver ? 'translate-x-0' : '-translate-x-1'
}`}
>
<RightChevron
/>
<RightChevron />
</div>
</div>
</div>
Expand Down

0 comments on commit 2f90a39

Please sign in to comment.