Skip to content

Commit

Permalink
Merge branch 'main' into cleanup/package.json-webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
PritishBudhiraja authored Dec 5, 2023
2 parents 29653fc + 4fbaee4 commit 5fc1cff
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyperswitch-dashboard",
"version": "1.0.3",
"version": "1.0.5",
"main": "index.js",
"author": "Shiva Nandan <[email protected]>",
"license": "MIT",
Expand Down
18 changes: 18 additions & 0 deletions public/hyperswitch/icons/warning.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 8 additions & 2 deletions src/entryPoints/hyperswitch/HyperSwitchApp.res
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,14 @@ let make = () => {
renderShow={profileId =>
<Webhooks webhookOnly=false showFormOnly=false />}
/>
| list{"recon"} => <Recon />
| list{"sdk"} => <SDKPage />
| list{"recon"} =>
<FeatureFlagEnabledComponent isEnabled=featureFlagDetails.recon>
<Recon />
</FeatureFlagEnabledComponent>
| list{"sdk"} =>
<FeatureFlagEnabledComponent isEnabled=featureFlagDetails.openSDK>
<SDKPage />
</FeatureFlagEnabledComponent>
| list{"3ds"} => <HSwitchThreeDS />
| list{"account-settings"} =>
<FeatureFlagEnabledComponent isEnabled=featureFlagDetails.sampleData>
Expand Down

0 comments on commit 5fc1cff

Please sign in to comment.