fix: dialogue type alert actions' styles

This commit is contained in:
Nikita Semenov 2022-07-25 15:53:38 +03:00
parent 37b7224264
commit b96478c248
1 changed files with 2 additions and 2 deletions

View File

@ -123,8 +123,8 @@ open class AlertFactory {
message: message,
tintColor: tint,
actions: [
.init(title: localizationProvider.yesTitle, style: .destructive, action: yesAction),
.init(title: localizationProvider.noTitle, action: noAction)
.init(title: localizationProvider.yesTitle, action: yesAction),
.init(title: localizationProvider.noTitle, style: .destructive, action: noAction)
])
}
}