diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/BlankNote.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/BlankNote.kt index d350ee09f6..a10c6225e9 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/BlankNote.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/BlankNote.kt @@ -59,7 +59,6 @@ fun BlankNotePreview() { @Composable fun BlankNote( modifier: Modifier = Modifier, - idHex: String? = null, shortPreview: Boolean = false, ) { Column(modifier = modifier) { @@ -81,7 +80,7 @@ fun BlankNote( if (shortPreview) { stringRes(R.string.post_not_found_short) } else { - stringRes(R.string.post_not_found) + if (idHex != null) ": $idHex" else "" + stringRes(R.string.post_not_found) }, modifier = Modifier.padding(30.dp), color = Color.Gray,