Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraviolet10 committed Mar 12, 2024
1 parent a48d963 commit e073215
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions packages/webapp/src/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<NavigationMenu className="flex flex-row justify-between px-6 py-2">
Expand Down
3 changes: 1 addition & 2 deletions packages/webapp/src/components/playerBoard.tsx
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit e073215

Please sign in to comment.