Skip to content

Commit

Permalink
IOS-2381 Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mgolovko committed Apr 8, 2024
1 parent 070d232 commit a340589
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ struct ImageCharIconView: View {
Config(side: 48, fontSize: 30),
Config(side: 64, fontSize: 36),
Config(side: 80, fontSize: 48)
].sorted(by: { $0.side > $1.side }) // Order by DESK side for simple search
].sorted(by: { $0.side > $1.side }) // Order by DESC side for simple search

let text: String

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct EmojiIconView: View {
Config(side: 48, cornerRadius: 10),
Config(side: 64, cornerRadius: 14),
Config(side: 80, cornerRadius: 18)
].sorted(by: { $0.side > $1.side }) // Order by DESK side for simple search
].sorted(by: { $0.side > $1.side }) // Order by DESC side for simple search

let emoji: Emoji

Expand Down

0 comments on commit a340589

Please sign in to comment.