Skip to content

Commit 0d1e82e

Browse files
committed
fix2
1 parent a6a38fd commit 0d1e82e

File tree

1 file changed

+1
-1
lines changed
  • packages/app/src/app/pages/common/Modals/NetlifyLogs

1 file changed

+1
-1
lines changed

packages/app/src/app/pages/common/Modals/NetlifyLogs/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const NetlifyLogs: FunctionComponent = () => {
2222
const { logs: newLogs } = await data.json();
2323
setLogs(newLogs);
2424
};
25-
const interval = setInterval(getLogs(url), 2000);
25+
const interval = setInterval(() => getLogs(url), 2000);
2626
return () => {
2727
clearInterval(interval);
2828
};

0 commit comments

Comments
 (0)