Skip to content

Commit

Permalink
fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
shoumaw committed Feb 6, 2025
1 parent 8340e7e commit aca54e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<ExcludedStatusSelectProps> = ({ label, placeholder, onChange }) => {
const id = useId();
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default } from "./UseExcludedStatusSelect";
export { default } from "./useExcludedStatusSelect";
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./ExcludedStatusSelect";

0 comments on commit aca54e7

Please sign in to comment.