From 2b0545a53dbb438b0317f3c0def3d2b67a9d1259 Mon Sep 17 00:00:00 2001 From: Banks Nussman Date: Fri, 11 Oct 2024 15:17:05 -0400 Subject: [PATCH] fix typecheck --- packages/manager/src/foundations/breakpoints.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/manager/src/foundations/breakpoints.ts b/packages/manager/src/foundations/breakpoints.ts index 9280f1597bd..aa7273db3f4 100644 --- a/packages/manager/src/foundations/breakpoints.ts +++ b/packages/manager/src/foundations/breakpoints.ts @@ -1,6 +1,8 @@ import { Chart } from '@linode/design-language-system'; import { createTheme } from '@mui/material'; +// This is a hack to create breakpoints outside of the theme itself. +// This will likely have to change at some point 😖 export const breakpoints = createTheme({ breakpoints: { values: { @@ -11,6 +13,6 @@ export const breakpoints = createTheme({ xs: 0, }, }, - charts: Chart, + chartTokens: Chart, name: 'light', }).breakpoints;