Skip to content

Commit 3c58a9b

Browse files
authored
fix file imports (#2774)
## Summary: Some file imports somehow got missed in #2771. Updating them here. Issue: none ## Test plan: `pnpm jest` Author: nishasy Reviewers: mark-fitzgerald, ivyolamit, SonicScrewdriver, anakaren-rojas Required Reviewers: Approved By: mark-fitzgerald, ivyolamit Checks: ✅ 8 checks were successful, ❌ 2 checks failed Pull Request URL: #2774
1 parent 72aeef2 commit 3c58a9b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.changeset/lazy-cameras-trade.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@khanacademy/perseus-editor": patch
3+
---
4+
5+
Fix file imports

packages/perseus-editor/src/widgets/radio/radio-image-editor.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import trashIcon from "@phosphor-icons/core/bold/trash-bold.svg";
77
import xIcon from "@phosphor-icons/core/regular/x.svg";
88
import * as React from "react";
99

10-
import {AutoResizingTextArea} from "./auto-resizing-text-area";
10+
import {AutoResizingTextArea} from "../../components/auto-resizing-text-area";
11+
1112
import styles from "./radio-editor.module.css";
1213

1314
// Flexible props to work for both the "add image" tile and

packages/perseus-editor/src/widgets/radio/radio-option-content-and-image-editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import {HeadingXSmall} from "@khanacademy/wonder-blocks-typography";
44
import plusIcon from "@phosphor-icons/core/bold/plus-bold.svg";
55
import * as React from "react";
66

7+
import {AutoResizingTextArea} from "../../components/auto-resizing-text-area";
78
import PerseusEditorAccordion from "../../components/perseus-editor-accordion";
89

9-
import {AutoResizingTextArea} from "./auto-resizing-text-area";
1010
import styles from "./radio-editor.module.css";
1111
import RadioImageEditor from "./radio-image-editor";
1212
import {

0 commit comments

Comments
 (0)