Skip to content

Commit 8b04d38

Browse files
committed
Folder selection: remove fading - Closes #360
1 parent 4a35701 commit 8b04d38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/apps/chat/components/applayout/ChatDrawerItem.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ function ChatDrawerItem(props: {
238238
{/* Current Folder color, and change initiator */}
239239
{(folder !== undefined) && <>
240240
<Tooltip disableInteractive title={folder ? `Change Folder (${folder.title})` : 'Add to Folder'}>
241-
<FadeInButton onClick={handleFolderChangeBegin}>
241+
<IconButton onClick={handleFolderChangeBegin}>
242242
{folder ? <FolderIcon style={{ color: folder?.color || 'inherit' }} /> : <FolderOutlinedIcon />}
243-
</FadeInButton>
243+
</IconButton>
244244
</Tooltip>
245245
<Divider orientation='vertical' sx={{ my: 1 }} />
246246
</>}

0 commit comments

Comments
 (0)