Skip to content

Commit

Permalink
bold < >
Browse files Browse the repository at this point in the history
  • Loading branch information
jackschedel committed Jan 1, 2024
1 parent 63cdd54 commit b602914
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/MobileBar/MobileBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,17 @@ const MobileBar = () => {
}}
>
<span className='sr-only'>Open sidebar</span>
{'<'}
<strong>{'<'}</strong>
</button>
<button
type='button'
className='-ml-0.5 -mt-0.5 inline-flex h-8 w-8 items-center justify-center rounded-md hover:bg-neutral-light'
onClick={() => {
if (currentChatIndex > 0)
setCurrentChatIndex(currentChatIndex - 1);
if (currentChatIndex > 0) setCurrentChatIndex(currentChatIndex - 1);
}}
>
<span className='sr-only'>Open sidebar</span>
{'>'}
<strong>{'>'}</strong>
</button>
<h1 className='flex-1 text-center text-base font-normal px-2 py-0 max-h-20 overflow-y-auto'>
{chatTitle}
Expand Down

0 comments on commit b602914

Please sign in to comment.