File tree Expand file tree Collapse file tree
frontend/testing-view/src/hooks Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ export const test = base.extend<ElectronFixtures>({
4949 const page = app . windows ( ) [ 1 ] ;
5050 await page . waitForLoadState ( "domcontentloaded" ) ;
5151 await page . waitForSelector ( '[data-testid="mode-badge"]:not([data-mode="loading"])' , { timeout : 15000 } ) ;
52- console . log ( "[mode]" , await page . getAttribute ( '[data-testid="mode-badge"]' , "data-mode" ) ) ;
5352 await use ( page ) ;
5453 } ,
5554} ) ;
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ import { useEffect } from "react";
33import type { OrdersData , PacketsData } from "../types/data/board" ;
44
55const useAppConfigs = ( isConnected : boolean ) => {
6- const backendUrl = import . meta. env . VITE_BACKEND_URL ;
6+ const backendUrl =
7+ import . meta. env . VITE_BACKEND_URL ?? "http://127.0.0.1:4000/backend" ;
78
89 const {
910 data : packets ,
You can’t perform that action at this time.
0 commit comments