chore: lint
This commit is contained in:
@@ -101,7 +101,7 @@ export const NavBar: React.FC<NavBarProps> = ({ newRecording, recordingName, isR
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Add sx={{ marginRight: '5px' }} /> Create Robot
|
<Add sx={{ marginRight: '5px' }} /> Create Robot
|
||||||
</IconButton>
|
</IconButton>
|
||||||
<IconButton sx={{
|
<IconButton sx={{
|
||||||
width: '140px',
|
width: '140px',
|
||||||
@@ -144,26 +144,26 @@ export const NavBar: React.FC<NavBarProps> = ({ newRecording, recordingName, isR
|
|||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
<GenericModal isOpen={isModalOpen} onClose={() => setModalOpen(false)}>
|
<GenericModal isOpen={isModalOpen} onClose={() => setModalOpen(false)}>
|
||||||
<div style={{ padding: '20px' }}>
|
<div style={{ padding: '20px' }}>
|
||||||
<h2>Enter URL</h2>
|
<h2>Enter URL</h2>
|
||||||
<TextField
|
<TextField
|
||||||
label="URL"
|
label="URL"
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
fullWidth
|
fullWidth
|
||||||
value={url}
|
value={url}
|
||||||
onChange={(e: any) => setUrl(e.target.value)}
|
onChange={(e: any) => setUrl(e.target.value)}
|
||||||
style={{ marginBottom: '20px' }}
|
style={{ marginBottom: '20px' }}
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
variant="contained"
|
variant="contained"
|
||||||
color="primary"
|
color="primary"
|
||||||
onClick={startRecording}
|
onClick={startRecording}
|
||||||
disabled={!url}
|
disabled={!url}
|
||||||
>
|
>
|
||||||
Submit & Start Recording
|
Submit & Start Recording
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</GenericModal>
|
</GenericModal>
|
||||||
</>
|
</>
|
||||||
) : ""
|
) : ""
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user