Skip to content

Commit

Permalink
Add Bring API token as env variable to story
Browse files Browse the repository at this point in the history
  • Loading branch information
tujoworker committed Feb 16, 2025
1 parent ff8cff5 commit 11e4ab8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export function PostalCode() {
return `https://cors-anywhere.herokuapp.com/https://api.bring.com/address/api/${countryCode}/postal-codes/${value}`
},
headers: {
'X-Mybring-API-Uid': 'Uid',
'X-Mybring-API-Key': 'Key',
'X-Mybring-API-Uid': process.env.BRING_API_UID,
'X-Mybring-API-Key': process.env.BRING_API_KEY,
},
},
})
Expand Down

0 comments on commit 11e4ab8

Please sign in to comment.