Skip to content

Commit

Permalink
Merge pull request #292 from BibliothecaDAO/main
Browse files Browse the repository at this point in the history
fix keystatic
  • Loading branch information
RedBeardEth authored Oct 8, 2024
2 parents e9e2534 + 39d889f commit f9ccb1f
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 949 deletions.
1 change: 1 addition & 0 deletions apps/nextjs/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export const env = createEnv({
NEXT_PUBLIC_ALCHEMY_API: z.string(),
NEXT_PUBLIC_ETHPLORER_APIKEY: z.string(),
// NEXT_PUBLIC_CLIENTVAR: z.string(),
NEXT_PUBLIC_GITHUB_REPO_NAME: z.string().optional(),
NEXT_PUBLIC_GITHUB_REPO_OWNER: z.string().optional(),
NEXT_PUBLIC_ARK_MARKETPLACE_API: z.string().url(),
NEXT_PUBLIC_ARK_ORDERBOOK_API: z.string().url(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export default function PortfolioItemsFitlersPanel({
<PortfolioItemsFiltersContent
walletAddress={walletAddress}
className="h-full px-5 py-3"
selectable
// walletCollectionsInitialData={walletCollectionsInitialData}
/>
</div>
Expand Down
6 changes: 3 additions & 3 deletions apps/nextjs/src/app/(app)/bridge/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ export default function Page({
return (
<div className="relative z-10 p-2">
<h2 className="mx-auto mb-6 text-center">The Lords Bridge</h2>
<div className=" container mx-auto w-full flex-col rounded-lg border bg-background p-2 md:w-[500px]">
<div className="container mx-auto w-full flex-col rounded-lg border bg-background p-2 md:w-[500px]">
<div className="mb-2 flex w-full justify-center space-x-2 rounded text-xl">
{tabs.map((tab) => (
<NavLink
className={cn(
"w-full text-base",
action === tab.link
? "bg-medium-dark-green !text-bright-yellow hover:!bg-white/50"
: "!text-bright-yellow/40",
? "hover:bg-bg-bright-yellow cursor-default !text-medium-dark-green/80"
: "bg-medium-dark-green !text-bright-yellow hover:bg-bright-yellow/50",
)}
size={"lg"}
key={tab.name}
Expand Down
2 changes: 0 additions & 2 deletions apps/nextjs/src/app/(app)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import Link from "next/link";
import { GameCard } from "@/app/(app)/games/GameCard";
import DojoDark from "@/icons/mark-dark.svg";
import Starknet from "@/icons/starknet.svg";
import { Button } from "@realms-world/ui/components/ui/button";

import {
Expand Down
Loading

0 comments on commit f9ccb1f

Please sign in to comment.