Poner settings por default para la notación

This commit is contained in:
Francisco-Galindo 2024-12-03 11:17:27 -06:00
parent 2f3972a437
commit cd0b29b948

View File

@ -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,
});