chore: lint

This commit is contained in:
karishmas6
2024-08-28 23:59:22 +05:30
parent a4402eb654
commit b8141b06d7

View File

@@ -192,15 +192,15 @@ export const InterpretationLog = () => {
<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" />
{customValue && ( {customValue && (
<input <input
type="number" type="number"
value={customValue} value={customValue}
onChange={handleCustomInputChange} onChange={handleCustomInputChange}
placeholder="Enter custom value" placeholder="Enter custom value"
style={{ marginLeft: 10 }} style={{ marginLeft: 10 }}
/> />
)} )}
</RadioGroup> </RadioGroup>
</FormControl> </FormControl>