Skip to content

Commit a035f49

Browse files
authored
Update +page.markdoc
1 parent 4e920f0 commit a035f49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/docs/tutorials/android/step-7/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ fun IdeasScreen(
106106
Column(modifier = Modifier.padding(16.dp)) {
107107
Text(text = idea.data["title"]?.toString() ?: "", fontWeight = FontWeight(700))
108108
Text(text = idea.data["description"]?.toString() ?: "")
109-
if (user?.id == idea.data["userId"].toString())
109+
if (user?.id == idea.data["userId"])
110110
Button(onClick = { onRemove(idea.id) }) {
111111
Text("Remove")
112112
}

0 commit comments

Comments
 (0)