Skip to content

Commit

Permalink
Release fix: decrease visual clutter
Browse files Browse the repository at this point in the history
  • Loading branch information
enricoros committed Feb 8, 2024
1 parent 5ca9475 commit 3d39a35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/apps/chat/components/ChatDrawerItem.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';

import { Avatar, Box, Divider, IconButton, ListItem, ListItemButton, ListItemDecorator, Sheet, styled, Tooltip, Typography } from '@mui/joy';
import { Avatar, Box, IconButton, ListItem, ListItemButton, ListItemDecorator, Sheet, styled, Tooltip, Typography } from '@mui/joy';
import AutoFixHighIcon from '@mui/icons-material/AutoFixHigh';
import CloseIcon from '@mui/icons-material/Close';
import DeleteForeverIcon from '@mui/icons-material/DeleteForever';
Expand Down Expand Up @@ -277,7 +277,7 @@ function ChatDrawerItem(props: {
)}
</Tooltip>

<Divider orientation='vertical' sx={{ my: 1, opacity: 0.5 }} />
{/*<Divider orientation='vertical' sx={{ my: 1, opacity: 0.5 }} />*/}
</>}

<Tooltip disableInteractive title='Rename'>
Expand All @@ -293,7 +293,7 @@ function ChatDrawerItem(props: {
</FadeInButton>
</Tooltip>

<Divider orientation='vertical' sx={{ my: 1, opacity: 0.5 }} />
{/*<Divider orientation='vertical' sx={{ my: 1, opacity: 0.5 }} />*/}

<Tooltip disableInteractive title='Export Chat'>
<FadeInButton size='sm' onClick={handleConversationExport}>
Expand Down

0 comments on commit 3d39a35

Please sign in to comment.