Skip to content

Commit

Permalink
fix(FolderCell): Show children when it's expended
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinperignon committed Nov 28, 2023
1 parent aa6cab0 commit 5e35d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mail/Views/Menu Drawer/Folders/FolderCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ struct FolderCell: View {
}
}

if !folder.content.isExpanded || cellType == .move {
if folder.content.isExpanded && cellType != .move {
ForEach(folder.children) { child in
FolderCell(
folder: child,
Expand Down

0 comments on commit 5e35d4f

Please sign in to comment.