Skip to content

Commit

Permalink
fix: bug saving api key provider
Browse files Browse the repository at this point in the history
  • Loading branch information
ellite committed Feb 21, 2024
1 parent c123160 commit e7cea59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ function addFixerKeyButton() {
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
body: `api_key=${encodeURIComponent(apiKey)} & provider=${encodeURIComponent(provider)}`,
body: `api_key=${encodeURIComponent(apiKey)}&provider=${encodeURIComponent(provider)}`,
})
.then(response => response.json())
.then(data => {
Expand Down

0 comments on commit e7cea59

Please sign in to comment.