diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-19 09:59:01 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-19 09:59:01 -0700 |
commit | 31764f5940f34157345f77f7d04265afa603bb5a (patch) | |
tree | 0b4e273c947d19e9648d3147780fa23f5de0dc46 /extension/react-app/src/tabs/gui.tsx | |
parent | 13bb26043186ddf5bb04771c77eea5cc1b565070 (diff) | |
download | sncontinue-31764f5940f34157345f77f7d04265afa603bb5a.tar.gz sncontinue-31764f5940f34157345f77f7d04265afa603bb5a.tar.bz2 sncontinue-31764f5940f34157345f77f7d04265afa603bb5a.zip |
check for codespaces, stream edits
Diffstat (limited to 'extension/react-app/src/tabs/gui.tsx')
-rw-r--r-- | extension/react-app/src/tabs/gui.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/src/tabs/gui.tsx b/extension/react-app/src/tabs/gui.tsx index 7716d561..62d44515 100644 --- a/extension/react-app/src/tabs/gui.tsx +++ b/extension/react-app/src/tabs/gui.tsx @@ -364,7 +364,7 @@ function GUI(props: GUIProps) { setStepsOpen(nextStepsOpen); }} onToggleAll={() => { - setStepsOpen((prev) => prev.map(() => !prev[index])); + setStepsOpen((prev) => prev.map((_, index) => !prev[index])); }} key={index} onUserInput={(input: string) => { @@ -388,7 +388,7 @@ function GUI(props: GUIProps) { /> ); })} - {waitingForSteps && <Loader></Loader>} + {/* {waitingForSteps && <Loader></Loader>} */} <div> {userInputQueue.map((input) => { |