Skip to content

Commit

Permalink
feat: add minimal test page for provider debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-ai-integration[bot] committed Nov 13, 2024
1 parent 32e0698 commit 6483c25
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Empty file added app/test/.gitkeep
Empty file.
21 changes: 21 additions & 0 deletions app/test/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
"use client";

import { WagmiProvider } from "wagmi";
import { wagmiConfig } from "../../services/web3/wagmiConfig";

export default function TestPage() {
console.log('Rendering test page...');
console.log('WagmiConfig:', {
hasChains: !!wagmiConfig.chains,
chainIds: wagmiConfig.chains.map(c => c.id)
});

return (
<WagmiProvider config={wagmiConfig}>
<div className="p-4">
<h1 className="text-2xl font-bold mb-4">Provider Test Page</h1>
<p>Testing minimal provider setup...</p>
</div>
</WagmiProvider>
);
}

0 comments on commit 6483c25

Please sign in to comment.