Skip to content

Commit

Permalink
fix: add space b/w
Browse files Browse the repository at this point in the history
  • Loading branch information
moonlitgrace committed Nov 7, 2024
1 parent b4195aa commit 9f5d9e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/_components/_admin/admin-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const AdminBar = () => {
variant={pathname === item.href ? 'default' : 'ghost'}
className={'grid aspect-square size-11 place-items-center rounded-xl'}
>
<Link href={item.href} aria-label={`Goto ${item.label}page`}>
<Link href={item.href} aria-label={`Goto ${item.label} page`}>
{React.createElement(item.icon, {
variant: pathname === item.href ? 'solid' : 'outline',
className: 'size-5',
Expand Down
2 changes: 1 addition & 1 deletion app/_components/_main/app-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const AppBar = () => {
variant={pathname === item.href ? 'default' : 'ghost'}
className={'grid aspect-square size-11 place-items-center rounded-xl'}
>
<Link href={item.href} aria-label={`Goto ${item.label}page`}>
<Link href={item.href} aria-label={`Goto ${item.label} page`}>
{React.createElement(item.icon, {
variant: pathname === item.href ? 'solid' : 'outline',
className: 'size-5',
Expand Down

0 comments on commit 9f5d9e6

Please sign in to comment.