diff --git a/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/ExcludedStatusSelect.tsx b/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/ExcludedStatusSelect.tsx index 46d42da..b4774cf 100644 --- a/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/ExcludedStatusSelect.tsx +++ b/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/ExcludedStatusSelect.tsx @@ -2,7 +2,7 @@ import React, { FC, useId } from "react"; import Select from "@atlaskit/select"; import { Label } from "@atlaskit/form"; import { ExcludedStatusSelectProps } from "./types"; -import useExcludedStatusSelect from "./hooks/useExcludedStatusSelect/UseExcludedStatusSelect"; +import useExcludedStatusSelect from "./hooks/useExcludedStatusSelect"; const ExcludedStatusSelect: FC = ({ label, placeholder, onChange }) => { const id = useId(); diff --git a/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/hooks/useExcludedStatusSelect/index.ts b/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/hooks/useExcludedStatusSelect/index.ts index 1b73676..9b2400d 100644 --- a/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/hooks/useExcludedStatusSelect/index.ts +++ b/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/hooks/useExcludedStatusSelect/index.ts @@ -1 +1 @@ -export { default } from "./UseExcludedStatusSelect"; +export { default } from "./useExcludedStatusSelect"; diff --git a/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/index.ts b/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/index.ts new file mode 100644 index 0000000..4446216 --- /dev/null +++ b/public/react/SettingsSidebar/components/IssueSource/components/StatusSelect/index.ts @@ -0,0 +1 @@ +export { default } from "./ExcludedStatusSelect";