Skip to content

Commit

Permalink
fix more imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Tnixc committed Nov 19, 2024
1 parent 5d95057 commit ac6f872
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/renderer/src/components/dropdown-list/DropdownList.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { RawList } from "../raw-list/RawList";
import DropdownListItem from "./DropdownListItem";
import { useRovingFocusGroup } from "@renderer/lib/roving-focus-group/rovingFocusGroup";
import { TokenNamespace } from "@renderer/lib/tungsten/token";
import { TokenNamespace } from "@shared/lib/tungsten/token";
import { createContext, createSignal, JSX, ParentComponent, useContext } from "solid-js";

export type Props = JSX.IntrinsicElements["div"];
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/components/popover/Popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
ShiftOptions,
} from "@floating-ui/dom";
import useControllableState from "@renderer/lib/controllable-state";
import { Token, TokenNamespace } from "@renderer/lib/tungsten/token";
import { Token, TokenNamespace } from "@shared/lib/tungsten/token";
import {
createSignal,
createContext,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DragHandler } from "./DragHandler";
import useControllableState from "@renderer/lib/controllable-state";
import { clamp } from "@renderer/lib/tungsten/math";
import { clamp } from "@shared/lib/tungsten/math";
import { Accessor, createContext, createMemo, ParentComponent, useContext } from "solid-js";
import { DOMElement } from "solid-js/jsx-runtime";

Expand Down

0 comments on commit ac6f872

Please sign in to comment.