linter issues
Some checks failed
Lint / Lint and Typecheck (push) Failing after 27s

This commit is contained in:
2025-11-15 16:43:44 +01:00
parent fe4783ae97
commit 8006a65e88
4 changed files with 10 additions and 10 deletions

View File

@@ -20,9 +20,9 @@ export type ChartConfig = Record<
)
>;
type ChartContextProps = {
interface ChartContextProps {
config: ChartConfig;
};
}
const ChartContext = React.createContext<ChartContextProps | null>(null);