Skip to content

Commit

Permalink
Fix env path/
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcramer committed Dec 17, 2024
1 parent 8f85c67 commit 9bea535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/docs/components/AppDemo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { useTheme } from '../contexts/Theme.tsx';
const queryClient = new QueryClient();

const demoWalletConnector = () => () => {
const demoWalletPK = process.env.VITE_DEMO_WALLET_PRIVATE_KEY;
const demoWalletPK = import.meta.env.VITE_DEMO_WALLET_PRIVATE_KEY;
const account = privateKeyToAccount(demoWalletPK as `0x${string}`);

const client = createWalletClient({
Expand Down

0 comments on commit 9bea535

Please sign in to comment.