Skip to content

Commit

Permalink
fix: [ANDROAPP-6123] key text in list card
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmateos committed Apr 25, 2024
1 parent c3e3ef1 commit 9366d0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ internal fun ListCardKey(
color: Color,
modifier: Modifier = Modifier,
) {
var modifiedText by remember { mutableStateOf(text) }
var modifiedText by remember(text) { mutableStateOf(text) }
Text(
text = modifiedText,
color = color,
Expand Down

0 comments on commit 9366d0e

Please sign in to comment.