Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 9797b07

Browse files
committed
Bigfix dependency array
1 parent 1a1c7cf commit 9797b07

File tree

1 file changed

+1
-1
lines changed
  • webapp_frontend/src/components

1 file changed

+1
-1
lines changed

webapp_frontend/src/components/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ function App(): ReactElement {
1010
Promise.resolve(setBackendPort())
1111
.then((backendPort:string) => {
1212
console.log("[APP] Backend-Port = " + backendPort)
13-
// eslint-disable-next-line react-hooks/exhaustive-deps
1413
callInitialBackendRequests()
1514
})
1615
.catch((error:any) => {
1716
alert("Error: Problems with backend.cfg - " + error)
1817
})
18+
// eslint-disable-next-line react-hooks/exhaustive-deps
1919
},[]);
2020

2121
function callInitialBackendRequests():void {

0 commit comments

Comments
 (0)