diff --git a/TIUIElements/Sources/Alerts/Factories/AlertFactory.swift b/TIUIElements/Sources/Alerts/Factories/AlertFactory.swift index 6f5d88b6..79c62efc 100644 --- a/TIUIElements/Sources/Alerts/Factories/AlertFactory.swift +++ b/TIUIElements/Sources/Alerts/Factories/AlertFactory.swift @@ -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) ]) } }