We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e920f0 commit a035f49Copy full SHA for a035f49
src/routes/docs/tutorials/android/step-7/+page.markdoc
@@ -106,7 +106,7 @@ fun IdeasScreen(
106
Column(modifier = Modifier.padding(16.dp)) {
107
Text(text = idea.data["title"]?.toString() ?: "", fontWeight = FontWeight(700))
108
Text(text = idea.data["description"]?.toString() ?: "")
109
- if (user?.id == idea.data["userId"].toString())
+ if (user?.id == idea.data["userId"])
110
Button(onClick = { onRemove(idea.id) }) {
111
Text("Remove")
112
}
0 commit comments