diff options
Diffstat (limited to 'extension')
-rw-r--r-- | extension/react-app/src/tabs/gui.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extension/react-app/src/tabs/gui.tsx b/extension/react-app/src/tabs/gui.tsx index a457382d..5001fe4b 100644 --- a/extension/react-app/src/tabs/gui.tsx +++ b/extension/react-app/src/tabs/gui.tsx @@ -391,7 +391,7 @@ function GUI(props: GUIProps) { /> ); })} - {/* {waitingForSteps && <Loader></Loader>} */} + {waitingForSteps && <Loader></Loader>} <div> {userInputQueue.map((input) => { @@ -491,6 +491,8 @@ function GUI(props: GUIProps) { <HeaderButtonWithText onClick={() => { client?.sendClear(); + // Reload the window to get completely fresh session + window.location.reload(); }} text="Clear All" > |