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 | 315de821c109a2ac45f4cb553890f941d33104bd (patch) | |
tree | 3f9a77345cb0ca36729e1f001eb3e88e2a2be147 /extension/react-app/src/tabs | |
parent | bc8a3aa9cca9fca058803ebd027ee3301479cef4 (diff) | |
download | sncontinue-315de821c109a2ac45f4cb553890f941d33104bd.tar.gz sncontinue-315de821c109a2ac45f4cb553890f941d33104bd.tar.bz2 sncontinue-315de821c109a2ac45f4cb553890f941d33104bd.zip |
check for codespaces, stream edits
Diffstat (limited to 'extension/react-app/src/tabs')
-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) => { |