From 2b8acaef97435df2636995c1cd89ca98d8e4dd2f Mon Sep 17 00:00:00 2001 From: Stef Williams Date: Thu, 7 Nov 2024 10:14:57 -0500 Subject: [PATCH] refactor: lib imports in theme builder --- demo/ts/components/theme-builder/config-preview.tsx | 2 +- demo/ts/components/theme-builder/utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/ts/components/theme-builder/config-preview.tsx b/demo/ts/components/theme-builder/config-preview.tsx index 899b27fc1..9012aea9c 100644 --- a/demo/ts/components/theme-builder/config-preview.tsx +++ b/demo/ts/components/theme-builder/config-preview.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { VictoryThemeDefinition } from "victory-core/lib"; +import { VictoryThemeDefinition } from "victory-core"; import Button from "./button"; import { Prism, SyntaxHighlighterProps } from "react-syntax-highlighter"; diff --git a/demo/ts/components/theme-builder/utils.ts b/demo/ts/components/theme-builder/utils.ts index a259519e0..5dd43c36b 100644 --- a/demo/ts/components/theme-builder/utils.ts +++ b/demo/ts/components/theme-builder/utils.ts @@ -1,4 +1,4 @@ -import { VictoryThemeDefinition } from "victory-core/lib"; +import { VictoryThemeDefinition } from "victory-core"; export const setNestedConfigValue = ( config: VictoryThemeDefinition,