Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpkane committed Dec 20, 2023
1 parent c174f4d commit d0662d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/packages/components/src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export { default as Bar } from "./Bar";
export { default as Button } from "./Button";
export { default as CodeBlock } from "./CodeBlock";
export { default as CodeTabs } from "./CodeTabs";
export { default as CopyButton } from "./CopyButton";
export { default as ErrorBoundary } from "./ErrorBoundary";
export { default as ExternalLink, useExternalLink } from "./ExternalLink";
Expand All @@ -17,9 +18,8 @@ export { default as PillButton } from "./PillButton";
export { default as Popout, PopoutDiv } from "./Popout";
export { default as PopoutSectionTitle } from "./PopoutSectionTitle";
export { default as Selection } from "./Selection";
export { default as Selector } from "./Selector";
export { default as Selector, SelectorValidationError } from "./Selector";
export type { UseSearch } from "./Selector";
export { default as TabOption } from "./TabOption";
export { default as ThemeProvider, useTheme } from "./ThemeProvider";
export { default as Tooltip } from "./Tooltip";
export { default as CodeTabs } from "./CodeTabs";
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SelectorValidationError } from "@fiftyone/components/src/components/Selector";
import { SelectorValidationError } from "@fiftyone/components";
import { isObjectIdField, snackbarErrors } from "@fiftyone/state";
import { isObjectIdString } from "@fiftyone/utilities";
import { useRef } from "react";
Expand Down

0 comments on commit d0662d7

Please sign in to comment.