···11-import { AccountSummary, ActiveSession } from "$/lib/types";
11+import type { AccountSummary, ActiveSession } from "$/lib/types";
22import { Show } from "solid-js";
33import { AccountSwitcher } from "./account/AccountSwitcher";
44import { RailButton } from "./RailButton";
+1-1
src/components/Session.tsx
···11-import { AccountSummary, ActiveSession } from "$/lib/types";
11+import type { AccountSummary, ActiveSession } from "$/lib/types";
22import { createMemo, Show } from "solid-js";
33import { Presence } from "solid-motionone";
44import { AvatarBadge } from "./AvatarBadge";
+2-2
src/components/account/AccountLedger.tsx
···11-import { AccountSummary } from "$/lib/types";
11+import { AvatarBadge } from "$/components/AvatarBadge";
22+import type { AccountSummary } from "$/lib/types";
23import { For, Show } from "solid-js";
34import { Motion } from "solid-motionone";
44-import { AvatarBadge } from "../AvatarBadge";
55import { AccountSwitchButton, LogoutButton } from "./AccountButtons";
6677type AccountLedgerProps = {
+1-1
src/components/account/AccountSwitcher.tsx
···11+import type { AccountSummary, ActiveSession } from "$/lib/types";
12import { onCleanup, onMount, Show } from "solid-js";
23import { Motion, Presence } from "solid-motionone";
33-import { AccountSummary, ActiveSession } from "../../lib/types";
44import { ArrowIcon } from "../shared/Icon";
55import { SwitcherIdentity } from "./AccountSwitcherIdentity";
66import { AccountSwitcherMenuList } from "./AccountSwitcherMenuList";
···11+import type { AccountSummary } from "$/lib/types";
12import { For, Show } from "solid-js";
22-import { AccountSummary } from "../../lib/types";
33import { AccountSwitcherRow } from "./AccountSwitcherRow";
4455export function AccountSwitcherMenuList(
+3-3
src/components/account/AccountSwitcherRow.tsx
···11-import { AccountSummary } from "../../lib/types";
22-import { AvatarBadge } from "../AvatarBadge";
33-import { Icon } from "../shared/Icon";
11+import { AvatarBadge } from "$/components/AvatarBadge";
22+import { Icon } from "$/components/shared/Icon";
33+import type { AccountSummary } from "$/lib/types";
4455type AccountSwitcherRowProps = {
66 account: AccountSummary;
+1-1
src/components/feeds/FeedChipAvatar.tsx
···11import { Icon } from "$/components/shared/Icon";
22-import { FeedGeneratorView, SavedFeedItem } from "$/lib/types";
22+import type { FeedGeneratorView, SavedFeedItem } from "$/lib/types";
33import { createMemo, Show } from "solid-js";
4455export function FeedChipAvatar(props: { feed: SavedFeedItem; generator?: FeedGeneratorView }) {