chore: lint

This commit is contained in:
karishmas6
2024-08-26 20:21:32 +05:30
parent b39e2fea29
commit e7f564d06e

View File

@@ -172,24 +172,24 @@ export const InterpretationLog = () => {
</TableContainer> </TableContainer>
<div style={{ display: 'flex', alignItems: 'flex-start', gap: '200px' }}> <div style={{ display: 'flex', alignItems: 'flex-start', gap: '200px' }}>
<FormControl> <FormControl>
<FormLabel> <FormLabel>
<h4>What is the maximum number of rows you want to extract?</h4> <h4>What is the maximum number of rows you want to extract?</h4>
</FormLabel> </FormLabel>
<RadioGroup row> <RadioGroup row>
<FormControlLabel value="10" control={<Radio />} label="10" /> <FormControlLabel value="10" control={<Radio />} label="10" />
<FormControlLabel value="100" control={<Radio />} label="100" /> <FormControlLabel value="100" control={<Radio />} label="100" />
<FormControlLabel value="custom" control={<Radio />} label="Custom" /> <FormControlLabel value="custom" control={<Radio />} label="Custom" />
</RadioGroup> </RadioGroup>
</FormControl> </FormControl>
<div> <div>
<h4>Additional Options</h4> <h4>Additional Options</h4>
<Button variant="contained" color="primary"> <Button variant="contained" color="primary">
Some Action Some Action
</Button> </Button>
</div>
</div> </div>
</div>
</> </>
) : null ) : null
} }