diff --git a/src/frontend/package.json b/src/frontend/package.json index 388f8c9f7..7b20bb596 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -38,7 +38,7 @@ "web-vitals": "^2.1.4" }, "scripts": { - "start": "NODE_ENV=development react-scripts start", + "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" diff --git a/src/frontend/src/contexts/tabsContext.tsx b/src/frontend/src/contexts/tabsContext.tsx index 0da46f828..b32aee683 100644 --- a/src/frontend/src/contexts/tabsContext.tsx +++ b/src/frontend/src/contexts/tabsContext.tsx @@ -137,7 +137,7 @@ export function TabsProvider({ children }: { children: ReactNode }) { } }); - addFlow(); + addFlow(flow); }); } };