From cd0b29b948cf5d258d519b3257560943cb007e73 Mon Sep 17 00:00:00 2001 From: Francisco-Galindo Date: Tue, 3 Dec 2024 11:17:27 -0600 Subject: [PATCH] =?UTF-8?q?Poner=20settings=20por=20default=20para=20la=20?= =?UTF-8?q?notaci=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/context/SettingsContext.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/context/SettingsContext.jsx b/src/context/SettingsContext.jsx index 7e5a8b9..e6d8f02 100644 --- a/src/context/SettingsContext.jsx +++ b/src/context/SettingsContext.jsx @@ -9,6 +9,7 @@ export const SettingsContext = createContext({ autosave: true, panning: true, showCardinality: true, + notation: "default", tableWidth: tableWidth, showDebugCoordinates: false, }); @@ -22,6 +23,7 @@ export default function SettingsContextProvider({ children }) { autosave: true, panning: true, showCardinality: true, + notation: "default", tableWidth: tableWidth, showDebugCoordinates: false, });