Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix keystatic #292

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading