1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-3659 Multiplayer | Support link without approve, fixes (#2445)

This commit is contained in:
Konstantin Ivanov 2025-05-23 16:05:41 +02:00 committed by GitHub
parent 55e430c70b
commit bd9ccaff50
Signed by: github
GPG key ID: B5690EEEBB952194
4 changed files with 101 additions and 9 deletions

View file

@ -146,6 +146,10 @@ class RequestJoinSpaceFragment : BaseBottomSheetComposeFragment() {
JoinSpaceWithoutApproveScreen(
isLoading = isLoading,
onRequestJoinSpaceClicked = vm::onRequestToJoinClicked,
onCancelClicked = {
vm.onCancelJoinSpaceRequestClicked()
dismiss()
},
spaceName = spaceName,
createdByName = createdByName
)
@ -155,6 +159,10 @@ class RequestJoinSpaceFragment : BaseBottomSheetComposeFragment() {
onRequestJoinSpaceClicked = vm::onRequestToJoinClicked,
spaceName = spaceName,
createdByName = createdByName,
onCancelClicked = {
vm.onCancelJoinSpaceRequestClicked()
dismiss()
}
)
}
} else {