Skip to content

Commit

Permalink
fix: plugin boundary retry if plugin logic is skipped (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiVandivier authored Jul 10, 2024
1 parent 82f05d5 commit 01a3160
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion adapter/src/components/AppWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ const AppWrapper = ({
plugin={true}
onPluginError={onPluginError}
onRetry={() => {
clearPluginError()
if (clearPluginError) {
clearPluginError()
}
window.location.reload()
}}
>
Expand Down

0 comments on commit 01a3160

Please sign in to comment.