Make variable naming consistent

This commit is contained in:
1ilit
2024-03-15 16:37:22 +02:00
parent 1132edbbb3
commit 3ec93f42c6
24 changed files with 152 additions and 183 deletions

View File

@@ -1,5 +1,5 @@
import { createContext, useState } from "react";
import { Action, ObjectType, defaultTableTheme } from "../data/data";
import { Action, ObjectType, defaultBlue } from "../data/constants";
import useUndoRedo from "../hooks/useUndoRedo";
import useTransform from "../hooks/useTransform";
import useSelect from "../hooks/useSelect";
@@ -29,7 +29,7 @@ export default function AreasContextProvider({ children }) {
y: -transform.pan.y,
width: 200,
height: 200,
color: defaultTableTheme,
color: defaultBlue,
},
]);
}