mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 22:17:03 +05:30
common: directly use string interpolation
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
3cebf3490c
commit
689f8cd147
1 changed files with 2 additions and 2 deletions
|
@ -83,9 +83,9 @@ fun LobstersItem(
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
SubmitterName(
|
SubmitterName(
|
||||||
text = "Submitted by %s".format(post.submitterName),
|
text = "Submitted by ${post.submitterName}",
|
||||||
avatarUrl = post.submitterAvatarUrl,
|
avatarUrl = post.submitterAvatarUrl,
|
||||||
contentDescription = "Submitted by %s".format(post.submitterName),
|
contentDescription = "Submitted by ${post.submitterName}",
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue