Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
benchristel committed Nov 26, 2024
1 parent adcea9c commit 7aca4b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 1 addition & 3 deletions packages/perseus/src/widgets/graded-group/graded-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ import type {
} from "../../types";
import type {PerseusGradedGroupRubric} from "../../validation.types";
import type {GradedGroupPromptJSON} from "../../widget-ai-utils/graded-group/graded-group-ai-utils";
import {PerseusMatrixWidgetOptions} from "../../perseus-types";
import {PerseusMatrixRubric} from "../../validation.types";
import {PropsFor} from "@khanacademy/wonder-blocks-core";
import type {PropsFor} from "@khanacademy/wonder-blocks-core";

const GRADING_STATUSES = {
ungraded: "ungraded" as const,
Expand Down
8 changes: 5 additions & 3 deletions packages/perseus/src/widgets/matrix/matrix.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,17 @@ import {getPromptJSON as _getPromptJSON} from "../../widget-ai-utils/matrix/matr

import scoreMatrix from "./score-matrix";

import type {PropsFor} from "@khanacademy/wonder-blocks-core";
import type {PerseusMatrixWidgetOptions} from "../../perseus-types";
import type {
PerseusMatrixWidgetAnswers,
PerseusMatrixWidgetOptions,
} from "../../perseus-types";
import type {WidgetExports, WidgetProps, Widget, FocusPath} from "../../types";
import type {
PerseusMatrixRubric,
PerseusMatrixUserInput,
} from "../../validation.types";
import type {MatrixPromptJSON} from "../../widget-ai-utils/matrix/matrix-ai-utils";
import {PerseusMatrixWidgetAnswers} from "../../perseus-types";
import type {PropsFor} from "@khanacademy/wonder-blocks-core";

const {assert} = InteractiveUtil;
const {stringArrayOfSize} = Util;
Expand Down

0 comments on commit 7aca4b6

Please sign in to comment.