Skip to content

Commit

Permalink
fix api handler type
Browse files Browse the repository at this point in the history
  • Loading branch information
JFrankfurt committed Aug 8, 2024
1 parent fc58ec8 commit 1e85a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/pages/api/proofs/bns/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse)
return res.status(404).json({ error: 'address is not eligible for early access' });
}

const responseData: EarlyAccessProofResponse = {
const responseData: BNSProofResponse = {
...content,
proofs,
discountValidatorAddress: USERNAME_BNS_DISCOUNT_VALIDATORS[parsedChain],
Expand Down

0 comments on commit 1e85a04

Please sign in to comment.