Exit profile edit screen on save #94
This commit is contained in:
parent
1bf96c2200
commit
aea49295a0
1 changed files with 4 additions and 1 deletions
|
@ -63,7 +63,10 @@ fun EditProfileScreen(
|
||||||
BasicTextButton(
|
BasicTextButton(
|
||||||
text = R.string.save,
|
text = R.string.save,
|
||||||
Modifier.textButton(),
|
Modifier.textButton(),
|
||||||
action = editProfileActions.onSaveClick
|
action = {
|
||||||
|
editProfileActions.onSaveClick()
|
||||||
|
goBack()
|
||||||
|
}
|
||||||
)
|
)
|
||||||
BasicTextButton(
|
BasicTextButton(
|
||||||
text = R.string.delete_profile,
|
text = R.string.delete_profile,
|
||||||
|
|
Reference in a new issue