add signer support whem replying

This commit is contained in:
greenart7c3 2023-08-16 14:34:11 -03:00
parent 66b1e4b15d
commit b8e97525eb

View File

@ -579,6 +579,9 @@ fun ReplyReaction(
onClick = {
if (accountViewModel.isWriteable()) {
onPress()
} else {
if (PackageUtils.isAmberInstalled(context)) {
onPress()
} else {
scope.launch {
Toast.makeText(
@ -589,6 +592,7 @@ fun ReplyReaction(
}
}
}
}
) {
CommentIcon(iconSize, grayTint)
}