feat: set default val to 10

This commit is contained in:
karishmas6
2024-08-29 23:01:10 +05:30
parent 648b6b3554
commit 9a3394c30b

View File

@@ -42,7 +42,7 @@ const rows = [
export const InterpretationLog = () => {
const [open, setOpen] = useState<boolean>(false);
const [log, setLog] = useState<string>('');
  const [selectedOption, setSelectedOption] = useState<string>('');
  const [selectedOption, setSelectedOption] = useState<string>('10');
const [customValue, setCustomValue] = useState('');
const logEndRef = useRef<HTMLDivElement | null>(null);