chore: lint

This commit is contained in:
karishmas6
2024-07-24 19:48:02 +05:30
parent 53157b4462
commit 03a92d8f0d

View File

@@ -106,26 +106,26 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
return (
<ActionProvider>
<div>
{isLoaded ?
<Grid container direction="row" spacing={0}>
<Grid item xs={2} ref={workflowListRef} style={{ display: "flex", flexDirection: "row" }}>
<LeftSidePanel
sidePanelRef={workflowListRef.current}
alreadyHasScrollbar={hasScrollbar}
recordingName={recordingName ? recordingName : ''}
handleSelectPairForEdit={handleSelectPairForEdit}
/>
</Grid>
<Grid id="browser-content" ref={browserContentRef} item xs>
<BrowserContent />
<div>
{isLoaded ?
<Grid container direction="row" spacing={0}>
<Grid item xs={2} ref={workflowListRef} style={{ display: "flex", flexDirection: "row" }}>
<LeftSidePanel
sidePanelRef={workflowListRef.current}
alreadyHasScrollbar={hasScrollbar}
recordingName={recordingName ? recordingName : ''}
handleSelectPairForEdit={handleSelectPairForEdit}
/>
</Grid>
<Grid id="browser-content" ref={browserContentRef} item xs>
<BrowserContent />
</Grid>
<Grid item xs={2}>
<RightSidePanel pairForEdit={pairForEdit} />
</Grid>
</Grid>
<Grid item xs={2}>
<RightSidePanel pairForEdit={pairForEdit} />
</Grid>
</Grid>
: <Loader />}
</div>
: <Loader />}
</div>
</ActionProvider>
);
};