diff --git a/ts/state/smart/InstallScreen.tsx b/ts/state/smart/InstallScreen.tsx index 5ffe2f5ec..6e7535d3d 100644 --- a/ts/state/smart/InstallScreen.tsx +++ b/ts/state/smart/InstallScreen.tsx @@ -282,7 +282,10 @@ export function SmartInstallScreen(): ReactElement { i18n, error: state.error, quit: () => window.IPC.shutdown(), - tryAgain: () => setState(INITIAL_STATE), + tryAgain: () => { + setRetryCounter(count => count + 1); + setState(INITIAL_STATE); + }, }, }; break;