summaryrefslogtreecommitdiff
path: root/extension/react-app/src/tabs
diff options
context:
space:
mode:
authorNate Sesti <33237525+sestinj@users.noreply.github.com>2023-06-25 13:50:23 -0700
committerGitHub <noreply@github.com>2023-06-25 13:50:23 -0700
commitf28a82dc2b929ddebdcf2589e24fc31a3b1078cc (patch)
tree8a87781af84b4acaf3bec75be7d42e93796b25cf /extension/react-app/src/tabs
parentad462728afc4e6a9e1402aff295010ced9cf2f7a (diff)
parent8db3dcb7b9f138b09d7cceedfa830fd150795b30 (diff)
downloadsncontinue-f28a82dc2b929ddebdcf2589e24fc31a3b1078cc.tar.gz
sncontinue-f28a82dc2b929ddebdcf2589e24fc31a3b1078cc.tar.bz2
sncontinue-f28a82dc2b929ddebdcf2589e24fc31a3b1078cc.zip
Merge pull request #153 from continuedev/function-calling
Function calling
Diffstat (limited to 'extension/react-app/src/tabs')
-rw-r--r--extension/react-app/src/tabs/gui.tsx4
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"
>