desktop: do not show scan QR code screen (#2686)

* desktop: do not show scan QR code screen

* expect/actual and different button text

---------

Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
This commit is contained in:
Stanislav Dmitrenko
2023-07-19 11:36:42 +03:00
committed by GitHub
parent d61ff0f2a7
commit 2389e870b3
6 changed files with 101 additions and 77 deletions
@@ -0,0 +1,9 @@
package chat.simplex.common.views.newchat
import androidx.compose.runtime.*
import chat.simplex.common.model.ChatModel
@Composable
actual fun ConnectViaLinkView(m: ChatModel, close: () -> Unit) {
PasteToConnectView(m, close)
}