Skip to content

Commit

Permalink
fix faucet bug (#3122)
Browse files Browse the repository at this point in the history
  • Loading branch information
wow-sven authored Dec 29, 2024
1 parent 7204c53 commit 638debc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/rooch-portal-v2/src/sections/faucet/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export function FaucetView({ address }: { address: string }) {
const payload = JSON.stringify({
claimer: viewAddress,
});
const response = await fetch(`${faucet}/faucet`, {
const response = await fetch(`${faucet.url}/faucet`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down

0 comments on commit 638debc

Please sign in to comment.