Skip to content

Commit d1f24ed

Browse files
authored
Merge pull request #1930 from aniruddha81/patch-1
Update +page.markdoc
2 parents 4a867c4 + a035f49 commit d1f24ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
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"])
109+
if (user?.id == idea.data["userId"])
110110
Button(onClick = { onRemove(idea.id) }) {
111111
Text("Remove")
112112
}
@@ -216,4 +216,4 @@ private fun AppContent(accountService: AccountService, ideasService: IdeaService
216216
}
217217
}
218218
}
219-
```
219+
```

0 commit comments

Comments
 (0)