From c7a34cd22bd17d8be39ad47642bf158d57e62dea Mon Sep 17 00:00:00 2001 From: Jeremy Wiebe Date: Thu, 31 Oct 2024 12:04:18 -0700 Subject: [PATCH] Move import type into type imports section --- packages/perseus/src/widgets/interactive-graphs/mafs-graph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/perseus/src/widgets/interactive-graphs/mafs-graph.tsx b/packages/perseus/src/widgets/interactive-graphs/mafs-graph.tsx index 767cd715f3..7041b27cb4 100644 --- a/packages/perseus/src/widgets/interactive-graphs/mafs-graph.tsx +++ b/packages/perseus/src/widgets/interactive-graphs/mafs-graph.tsx @@ -41,11 +41,11 @@ import {SvgDefs} from "./graphs/components/text-label"; import {PointGraph} from "./graphs/point"; import {MIN, X, Y} from "./math"; import {Protractor} from "./protractor"; -import {type InteractiveGraphAction} from "./reducer/interactive-graph-action"; import {actions} from "./reducer/interactive-graph-action"; import {GraphConfigContext} from "./reducer/use-graph-config"; import {isUnlimitedGraphState, REMOVE_BUTTON_ID} from "./utils"; +import type {InteractiveGraphAction} from "./reducer/interactive-graph-action"; import type { InteractiveGraphState, InteractiveGraphProps,