chore: lint

This commit is contained in:
karishmas6
2024-10-19 14:02:30 +05:30
parent 8e70f04332
commit 6d9937c21b

View File

@@ -17,7 +17,6 @@ interface SidePanelHeaderProps {
export const SidePanelHeader: React.FC<SidePanelHeaderProps> = ({ setShowOutputData }) => { export const SidePanelHeader: React.FC<SidePanelHeaderProps> = ({ setShowOutputData }) => {
const [steppingIsDisabled, setSteppingIsDisabled] = useState(true); const [steppingIsDisabled, setSteppingIsDisabled] = useState(true);
const { socket } = useSocketStore(); const { socket } = useSocketStore();
const handleStep = () => { const handleStep = () => {
@@ -25,7 +24,7 @@ export const SidePanelHeader: React.FC<SidePanelHeaderProps> = ({ setShowOutputD
}; };
return ( return (
<div style={{width: 'inherit'}}> <div style={{ width: 'inherit' }}>
<InterpretationButtons enableStepping={(isPaused) => setSteppingIsDisabled(!isPaused)} setShowOutputData={setShowOutputData} /> <InterpretationButtons enableStepping={(isPaused) => setSteppingIsDisabled(!isPaused)} setShowOutputData={setShowOutputData} />
{/* <Button {/* <Button
variant='outlined' variant='outlined'
@@ -36,7 +35,7 @@ export const SidePanelHeader: React.FC<SidePanelHeaderProps> = ({ setShowOutputD
step step
<FastForward/> <FastForward/>
</Button> */} </Button> */}
<hr/> <hr />
</div> </div>
); );
}; };