Skip to content

Commit

Permalink
Delete components sub folders
Browse files Browse the repository at this point in the history
  • Loading branch information
jamdelion committed Dec 4, 2024
1 parent b94ef40 commit 40b0d0d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { ICONS } from "../../shared/icons";
import type { Checklist } from "../model";
import { toggleExpandableChecklist } from "../model";
import { ChecklistProps } from "../types";
import { Options } from "./components/Options";
import { Options } from "./Options";

export const ChecklistComponent: React.FC<ChecklistProps> = (props) => {
const type = TYPES.Checklist;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import ModalSectionContent from "ui/editor/ModalSectionContent";
import Input from "ui/shared/Input/Input";
import InputRow from "ui/shared/InputRow";

import { Option } from "../../../shared";
import type { Group } from "../../model";
import { Option } from "../../shared";
import type { Group } from "../model";
import { OptionEditor } from "./OptionsEditor";

export const Options: React.FC<{ formik: FormikHookReturn }> = ({ formik }) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import Input from "ui/shared/Input/Input";
import InputRow from "ui/shared/InputRow";
import InputRowItem from "ui/shared/InputRowItem";

import { FlagsSelect } from "../../../shared/FlagsSelect";
import { OptionEditorProps } from "../../types";
import { FlagsSelect } from "../../shared/FlagsSelect";
import { OptionEditorProps } from "../types";

export const OptionEditor: React.FC<OptionEditorProps> = (props) => {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect } from "react";

import { Props } from "../../types";
import { Props } from "../types";

// An auto-answered Checklist won't be seen by the user, but still leaves a breadcrumb
export const AutoAnsweredChecklist: React.FC<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import ErrorWrapper from "ui/shared/ErrorWrapper";
import { object } from "yup";

import { Props } from "../types";
import { AutoAnsweredChecklist } from "./components/AutoAnsweredChecklist";
import { AutoAnsweredChecklist } from "./AutoAnsweredChecklist";
import { getInitialExpandedGroups, toggleInArray } from "./helpers";

export enum ChecklistLayout {
Expand Down

0 comments on commit 40b0d0d

Please sign in to comment.