chore: lint

This commit is contained in:
karishmas6
2024-08-29 23:03:57 +05:30
parent a8248ae1b0
commit 6e0770d2f5

View File

@@ -191,14 +191,14 @@ export const InterpretationLog = () => {
<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" />
{selectedOption === 'custom' && ( {selectedOption === 'custom' && (
                        <TextField <TextField
                          type="number" type="number"
                          value={customValue} value={customValue}
                          onChange={handleCustomValueChange} onChange={handleCustomValueChange}
                          placeholder="Enter number" placeholder="Enter number"
                          sx={{ marginLeft: '10px', marginTop: '10px', color: 'white' }} sx={{ marginLeft: '10px', marginTop: '10px', color: 'white' }}
                        /> />
                      )} )}
</RadioGroup> </RadioGroup>
</FormControl> </FormControl>