Skip to content

Commit

Permalink
Fix alert occasionally display in uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
viere1234 committed Mar 8, 2024
1 parent dd8a837 commit 3fbc04e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions OPass.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@
buildSettings = {
CODE_SIGN_ENTITLEMENTS = OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 38;
CURRENT_PROJECT_VERSION = 40;
DEVELOPMENT_TEAM = 9UZ879Y8DL;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = OneSignalNotificationServiceExtension/Info.plist;
Expand All @@ -876,7 +876,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.2.4;
MARKETING_VERSION = 4.2.6;
PRODUCT_BUNDLE_IDENTIFIER = app.opass.ccip.OneSignalNotificationServiceExtension;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -891,7 +891,7 @@
buildSettings = {
CODE_SIGN_ENTITLEMENTS = OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 38;
CURRENT_PROJECT_VERSION = 40;
DEVELOPMENT_TEAM = 9UZ879Y8DL;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = OneSignalNotificationServiceExtension/Info.plist;
Expand All @@ -903,7 +903,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.2.4;
MARKETING_VERSION = 4.2.6;
PRODUCT_BUNDLE_IDENTIFIER = app.opass.ccip.OneSignalNotificationServiceExtension;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
6 changes: 3 additions & 3 deletions OPass/Fastpass/ScenarioView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@ struct ScenarioView: View {
}
}
}
.alert("NotAvailable", isPresented: $isDisableAlertPresented, actions: {
Button(String(localized: "Cancel"), role: .cancel) { }
}, message: { Text(disableAlertString) })
}
}
.navigationBarTitleDisplayMode(.inline)
Expand All @@ -67,6 +64,9 @@ struct ScenarioView: View {
}
}
}
.alert("NotAvailable", isPresented: $isDisableAlertPresented, actions: {
Button(String(localized: "Cancel"), role: .cancel) { }
}, message: { Text(disableAlertString) })
.alert("ConfirmSignOut", isPresented: $isLogOutAlertPresented) {
Button(String(localized: "SignOut"), role: .destructive) {
EventStore.signOut()
Expand Down

0 comments on commit 3fbc04e

Please sign in to comment.