Skip to content

Commit

Permalink
Mobile: Resolves #11202: Use a FontAwesome icon for the trash folder (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
personalizedrefrigerator authored Nov 9, 2024
1 parent 4d5b1ce commit 5aa29d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-mobile/components/side-menu-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ const SideMenuContentComponent = (props: Props) => {
const renderFolderIcon = (folderId: string, folderIcon: FolderIcon) => {
if (!folderIcon) {
if (folderId === getTrashFolderId()) {
folderIcon = getTrashFolderIcon(FolderIconType.Emoji);
folderIcon = getTrashFolderIcon(FolderIconType.FontAwesome);
} else if (alwaysShowFolderIcons) {
return <IonIcon name="folder-outline" style={styles_.folderBaseIcon} />;
} else {
Expand Down

0 comments on commit 5aa29d3

Please sign in to comment.