Skip to content

Commit

Permalink
WIP: debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
manishiwa committed Nov 17, 2023
1 parent a9284b6 commit 1b85dc0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/optimism-retropgf-3/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Container from "@/components/layout/Container";
import Heading from "@/components/layout/Heading";
import { Suspense } from "react";

export default async function Layout({
children,
Expand Down Expand Up @@ -35,7 +36,9 @@ export default async function Layout({

<Container className="mt-[30px] !pr-0 2xl:!pr-[50px]">
<div className="w-full overflow-x-scroll 2xl:overflow-x-visible z-100 py-5 scrollbar-thin scrollbar-thumb-forest-900 scrollbar-track-forest-500/5 scrollbar-thumb-rounded-full scrollbar-track-rounded-full scroller pr-[50px] 2xl:pr-0">
<div className="min-w-[1330px] ">{children}</div>
<div className="min-w-[1330px] ">
<Suspense fallback={<div>Loading...</div>}>{children}</Suspense>
</div>
</div>
</Container>
</>
Expand Down
2 changes: 2 additions & 0 deletions app/optimism-retropgf-3/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ const URL =
? `http://${process.env.NEXT_PUBLIC_VERCEL_URL}/api/optimism-retropgf-3/projects`
: `https://${process.env.NEXT_PUBLIC_VERCEL_URL}/api/optimism-retropgf-3/projects`;

console.log("URL", URL);

const getProjects = async () => {
console.log("URL", URL);
/*
Expand Down

0 comments on commit 1b85dc0

Please sign in to comment.