Skip to content

Commit 7884aaa

Browse files
author
manasa
committed
lint issue fixed
1 parent 32547d0 commit 7884aaa

File tree

1 file changed

+3
-2
lines changed
  • packages/react-sdk-components/src/components/template/CaseView

1 file changed

+3
-2
lines changed

packages/react-sdk-components/src/components/template/CaseView/CaseView.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ export default function CaseView(props: PropsWithChildren<CaseViewProps>) {
177177
useEffect(() => {
178178
setIsLastUpdateCaseTimeChanged(false);
179179
setDataUpdated(false);
180-
181180
}, [isLastUpdateCaseTimeChanged]);
182181

183182
useEffect(() => {
@@ -256,7 +255,9 @@ export default function CaseView(props: PropsWithChildren<CaseViewProps>) {
256255
<Grid item xs={6}>
257256
{theStagesRegion}
258257
{theTodoRegion}
259-
{deferLoadInfo.length > 0 && <DeferLoad getPConnect={getPConnect} name={deferLoadInfo[activeVertTab].config.name} isTab dataUpdated={dataUpdated} />}
258+
{deferLoadInfo.length > 0 && (
259+
<DeferLoad getPConnect={getPConnect} name={deferLoadInfo[activeVertTab].config.name} isTab dataUpdated={dataUpdated} />
260+
)}
260261
</Grid>
261262

262263
<Grid item xs={3}>

0 commit comments

Comments
 (0)