1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +00:00

chore: lint fixes

This commit is contained in:
2022-06-20 17:32:28 +05:00
parent eb569c7b82
commit eb397b15c2

View File

@@ -56,7 +56,7 @@ const Studio = () => {
}, [appContext.runTimes])
useEffect(() => {
if(runTimes.length) setSelectedRunTime(runTimes[0])
if (runTimes.length) setSelectedRunTime(runTimes[0])
}, [runTimes])
const handleTabChange = (_e: any, newValue: string) => {
@@ -184,7 +184,9 @@ const Studio = () => {
onChange={handleChangeRunTime}
>
{runTimes.map((runTime) => (
<MenuItem key={runTime} value={runTime}>{runTime}</MenuItem>
<MenuItem key={runTime} value={runTime}>
{runTime}
</MenuItem>
))}
</Select>
</FormControl>