From eb397b15c2a499c3d152e5574723a98d858b22f8 Mon Sep 17 00:00:00 2001 From: sabhas Date: Mon, 20 Jun 2022 17:32:28 +0500 Subject: [PATCH] chore: lint fixes --- web/src/containers/Studio/index.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/src/containers/Studio/index.tsx b/web/src/containers/Studio/index.tsx index 4c44995..c05516a 100644 --- a/web/src/containers/Studio/index.tsx +++ b/web/src/containers/Studio/index.tsx @@ -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) => ( - {runTime} + + {runTime} + ))}