From 66f9761283be6c6160e1d743fed7dafe5b169bfb Mon Sep 17 00:00:00 2001 From: John Micko Date: Wed, 3 Jan 2024 19:37:42 -0600 Subject: [PATCH] fix the doge assumption --- client/src/providers/DataProvider.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/providers/DataProvider.tsx b/client/src/providers/DataProvider.tsx index 4b3404e9..23f172bb 100644 --- a/client/src/providers/DataProvider.tsx +++ b/client/src/providers/DataProvider.tsx @@ -58,6 +58,7 @@ export function DataProvider({ children }: { children: ReactNode }) { })); setProducts({ allProducts: newAllProducts, activeProducts: newActiveProducts }); + setProductID(productsNoVolume.activeProducts[0]?.product_id || 'DOGE-USD') }, [productsNoVolume]);