File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ import { formatExportedChartDatas } from "./utils/save";
30
30
import { tracker } from "@/utils/tracker" ;
31
31
import Notification from "./notify"
32
32
import initDslParser from "@kanaries/gw-dsl-parser" ;
33
- import wasmPath from "@kanaries/gw-dsl-parser/gw_dsl_parser_bg.wasm?url" ;
34
33
import {
35
34
Select ,
36
35
SelectContent ,
@@ -356,7 +355,7 @@ const initOnJupyter = async(props: IAppProps) => {
356
355
if ( props . needLoadDatas ) {
357
356
comm . sendMsgAsync ( "request_data" , { } , null ) ;
358
357
}
359
- await initDslParser ( wasmPath ) ;
358
+ await initDslParser ( ) ;
360
359
}
361
360
362
361
const initOnHttpCommunication = async ( props : IAppProps ) => {
@@ -366,7 +365,7 @@ const initOnHttpCommunication = async(props: IAppProps) => {
366
365
const visSpecResp = await comm . sendMsg ( "get_latest_vis_spec" , { } ) ;
367
366
props . visSpec = visSpecResp [ "data" ] [ "visSpec" ] ;
368
367
}
369
- await initDslParser ( wasmPath ) ;
368
+ await initDslParser ( ) ;
370
369
}
371
370
372
371
const defaultInit = async ( props : IAppProps ) => { }
You can’t perform that action at this time.
0 commit comments