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
commit5419dde036428d7b74063aaffb053c6a28d00483 (patch)
tree445b9839396e8000b0fabd14fb7f4294730fb0c9 /extension/react-app/src/tabs
parent3f1123095d2ee652b1db239d325aa74f5acfb0cf (diff)
parent4b394e96a57e0a018cb815e929bf28b445e17ae0 (diff)
downloadsncontinue-5419dde036428d7b74063aaffb053c6a28d00483.tar.gz
sncontinue-5419dde036428d7b74063aaffb053c6a28d00483.tar.bz2
sncontinue-5419dde036428d7b74063aaffb053c6a28d00483.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"
>