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 | |
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')
-rw-r--r-- | extension/react-app/src/components/ComboBox.tsx | 2 | ||||
-rw-r--r-- | extension/react-app/src/tabs/gui.tsx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx index 8c1f80e0..1a3a2b90 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -122,7 +122,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { target.style.height = "auto"; target.style.height = `${Math.min( target.scrollHeight, - 200 + 300 ).toString()}px`; }, onKeyDown: (event) => { 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) => { |