Skip to content

Commit

Permalink
Merge pull request #667 from UTDNebula/fix-validator-env
Browse files Browse the repository at this point in the history
fix: incorrect validator env in validator endpoint
  • Loading branch information
akevinge authored Sep 14, 2023
2 parents 40e9371 + fa5d0ce commit 455eadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/trpc/router/validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ export const validatorRouter = router({
bypasses,
};

const validationData = await fetch(`${process.env.VALIDATOR}/test-validate`, {
const validationData = await fetch(`${process.env.NEXT_PUBLIC_VALIDATOR}/test-validate`, {
method: 'POST',
body: JSON.stringify(body),
headers: {
Expand Down

0 comments on commit 455eadd

Please sign in to comment.