From 05cde95906654180a89008164c5c02a3f1eb9464 Mon Sep 17 00:00:00 2001 From: Ore Ogundipe Date: Tue, 11 Feb 2025 03:10:37 -0500 Subject: [PATCH] fix: disable musePpg by default --- frontend/src/hooks/muse.context.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/hooks/muse.context.tsx b/frontend/src/hooks/muse.context.tsx index d3349a9f..12bec4e9 100644 --- a/frontend/src/hooks/muse.context.tsx +++ b/frontend/src/hooks/muse.context.tsx @@ -17,7 +17,7 @@ export const MuseContextProvider = ({ children }: { children: React.ReactNode }) const museClient = new MuseClient(); try { - museClient.enablePpg = true; + museClient.enablePpg = false; } catch (e) { console.error("ppg is not supported"); }