fix: remove full width invite screen buttons
Signed-off-by: Infi <wingit@geist.ga>
This commit is contained in:
parent
5683dd85ce
commit
10a40f75e7
|
|
@ -246,7 +246,6 @@ fun InviteScreen(
|
||||||
viewModel.joinInvite(inviteCode)
|
viewModel.joinInvite(inviteCode)
|
||||||
},
|
},
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.weight(1f)
|
|
||||||
.testTag("accept_invite")
|
.testTag("accept_invite")
|
||||||
) {
|
) {
|
||||||
Text(text = stringResource(id = R.string.invite_join))
|
Text(text = stringResource(id = R.string.invite_join))
|
||||||
|
|
@ -257,7 +256,6 @@ fun InviteScreen(
|
||||||
TextButton(
|
TextButton(
|
||||||
onClick = onFinish,
|
onClick = onFinish,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.weight(1f)
|
|
||||||
.testTag("decline_invite")
|
.testTag("decline_invite")
|
||||||
) {
|
) {
|
||||||
Text(text = stringResource(id = R.string.invite_cancel))
|
Text(text = stringResource(id = R.string.invite_cancel))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue