Exit profile edit screen on save #94

This commit is contained in:
Tibo De Peuter 2023-05-02 22:41:04 +02:00
parent 1bf96c2200
commit aea49295a0

View file

@ -63,7 +63,10 @@ fun EditProfileScreen(
BasicTextButton(
text = R.string.save,
Modifier.textButton(),
action = editProfileActions.onSaveClick
action = {
editProfileActions.onSaveClick()
goBack()
}
)
BasicTextButton(
text = R.string.delete_profile,