From e0732156d56f50eb93e0512c3de7e0bfc045e746 Mon Sep 17 00:00:00 2001 From: Aritra Chatterjee Date: Tue, 12 Mar 2024 16:33:27 +0530 Subject: [PATCH] fix imports --- packages/webapp/src/components/navbar.tsx | 3 +-- packages/webapp/src/components/playerBoard.tsx | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) 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