We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a35701 commit 8b04d38Copy full SHA for 8b04d38
src/apps/chat/components/applayout/ChatDrawerItem.tsx
@@ -238,9 +238,9 @@ function ChatDrawerItem(props: {
238
{/* Current Folder color, and change initiator */}
239
{(folder !== undefined) && <>
240
<Tooltip disableInteractive title={folder ? `Change Folder (${folder.title})` : 'Add to Folder'}>
241
- <FadeInButton onClick={handleFolderChangeBegin}>
+ <IconButton onClick={handleFolderChangeBegin}>
242
{folder ? <FolderIcon style={{ color: folder?.color || 'inherit' }} /> : <FolderOutlinedIcon />}
243
- </FadeInButton>
+ </IconButton>
244
</Tooltip>
245
<Divider orientation='vertical' sx={{ my: 1 }} />
246
</>}
0 commit comments