Skip to content

Commit

Permalink
Fix certificates list reloading (#234)
Browse files Browse the repository at this point in the history
Co-authored-by: alex-slobodian <[email protected]>
  • Loading branch information
OleksandrSPV and aleksandr-slobodian authored Jan 6, 2025
1 parent bed34ff commit 9030a05
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export function App() {
currentProviderId,
fortifyClient,
onSuccess: (providerId) => {
if (currentProviderId !== providerId) return;
handleCertificatesDataReload(providerId);
},
});
Expand All @@ -79,6 +80,7 @@ export function App() {
currentProviderId,
fortifyClient,
onSuccess: (providerId) => {
if (currentProviderId !== providerId) return;
handleCertificatesDataReload(providerId);
},
});
Expand Down

0 comments on commit 9030a05

Please sign in to comment.