Skip to content

Commit

Permalink
Fix UserID and JobID Not Refreshing (#287)
Browse files Browse the repository at this point in the history
* call method to refresh userid and jobid when new product is selected.

* bump build number

---------

Co-authored-by: Juma Allan <[email protected]>
  • Loading branch information
tobitech and jumaallan authored Feb 4, 2025
1 parent c1b312c commit e125d40
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Example/SmileID.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 43;
CURRENT_PROJECT_VERSION = 44;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 99P7YGX9Q6;
Expand All @@ -929,7 +929,7 @@
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.4.0;
MARKETING_VERSION = 1.4.1;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.smileidentity.example-ios";
PRODUCT_NAME = "Smile ID";
Expand All @@ -952,7 +952,7 @@
CODE_SIGN_IDENTITY = "Apple Distribution";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 43;
CURRENT_PROJECT_VERSION = 44;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 99P7YGX9Q6;
Expand All @@ -962,7 +962,7 @@
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.4.0;
MARKETING_VERSION = 1.4.1;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.smileidentity.example-ios";
PRODUCT_NAME = "Smile ID";
Expand Down
1 change: 1 addition & 0 deletions Example/SmileID/Home/HomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ struct HomeView: View {
LazyVGrid(columns: columns, spacing: 10) {
ForEach(SmileIDProduct.allCases, id: \.self) { product in
Button {
viewModel.onProductClicked()
selectedProduct = product
} label: {
ProductCell(product: product)
Expand Down

0 comments on commit e125d40

Please sign in to comment.