diff --git a/packages/webapp/src/components/navbar.tsx b/packages/webapp/src/components/navbar.tsx index 7b80d4db..2da1e766 100644 --- a/packages/webapp/src/components/navbar.tsx +++ b/packages/webapp/src/components/navbar.tsx @@ -2,10 +2,9 @@ import Link from "next/link" import { ConnectKitButton } from "connectkit" +import { Button } from "src/components/ui/button" import { NavigationMenu, NavigationMenuItem, NavigationMenuList } from "src/components/ui/navigation-menu" -import { Button } from "./ui/button" - export const Navbar = () => { return ( diff --git a/packages/webapp/src/components/playerBoard.tsx b/packages/webapp/src/components/playerBoard.tsx index 65b9b0aa..adfa1e6c 100644 --- a/packages/webapp/src/components/playerBoard.tsx +++ b/packages/webapp/src/components/playerBoard.tsx @@ -1,11 +1,10 @@ import { horizontalListSortingStrategy, SortableContext, useSortable } from "@dnd-kit/sortable" +import CardContainer from "src/components/cards/cardContainer" import * as store from "src/store/hooks" import { CardPlacement } from "src/store/types" import { convertBigIntArrayToStringArray, shortenAddress } from "src/utils/js-utils" -import CardContainer from "./cards/cardContainer" - interface PlayerBoardProps { playerAddress: `0x${string}` | undefined | null playedCards: readonly bigint[] | null