Skip to content

Commit

Permalink
fix: Wrong emojy order in message context menu #WPB-15119 (#3837)
Browse files Browse the repository at this point in the history
  • Loading branch information
borichellow authored Jan 27, 2025
1 parent 513c6fd commit a9f03e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ fun ReactionOption(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.SpaceEvenly
) {
listOf("❀️", "πŸ‘", "😁", "πŸ™‚", "☹️", "πŸ‘Ž").forEach { emoji ->
listOf("πŸ‘", "πŸ™‚", "❀️", "☹️", "πŸ‘Ž").forEach { emoji ->
CompositionLocalProvider(
LocalMinimumInteractiveComponentSize provides Dp.Unspecified,
) {
Expand Down

0 comments on commit a9f03e8

Please sign in to comment.