Skip to content

Commit

Permalink
fix broken import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
heswell committed Oct 23, 2023
1 parent bb499b6 commit 2486d85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
} from "@finos/vuu-utils";
import { getIndexOfEditedItem } from "./toolbar-dom-utils";
import { NavigationOutOfBoundsHandler } from "./Toolbar";
import { PopupCloseCallback } from "packages/vuu-popups/src";
import { PopupCloseCallback } from "@finos/vuu-popups";

type directionType = "bwd" | "fwd" | "start" | "end";
type directionMap = { [key: string]: directionType };
Expand Down
2 changes: 1 addition & 1 deletion vuu-ui/packages/vuu-layout/src/toolbar/useToolbar.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { OverflowItem, ToolbarProps } from "@finos/vuu-layout";
import { isValidNumber } from "@finos/vuu-utils";
import { PopupCloseCallback } from "packages/vuu-popups/src";
import { PopupCloseCallback } from "@finos/vuu-popups";
import {
KeyboardEvent,
MouseEvent as ReactMouseEvent,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ColumnDescriptor } from "packages/vuu-datagrid-types";
import { ColumnDescriptor } from "@finos/vuu-datagrid-types";
import cx from "classnames";

import {
Expand Down

0 comments on commit 2486d85

Please sign in to comment.