From ae6e7a3805dcd715a64e9e7ed054689e3c6cfe99 Mon Sep 17 00:00:00 2001 From: Chigozirim Igweamaka Date: Wed, 19 Nov 2025 16:41:57 +0100 Subject: [PATCH] Update WASM load path to fingerprint.wasm --- client/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/App.js b/client/src/App.js index 6710a76..80bb2dc 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -92,7 +92,7 @@ function App() { try { const go = new window.Go(); const result = await WebAssembly.instantiateStreaming( - fetch("/main.wasm"), + fetch("/fingerprint.wasm"), go.importObject ); go.run(result.instance);