Skip to content

Commit

Permalink
UI: Fix euro balance display
Browse files Browse the repository at this point in the history
  • Loading branch information
mjmacleod committed Oct 3, 2022
1 parent 7b70b42 commit 7e0bca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/electron_vue/src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ async function updateRate(seconds) {
// use blockhut api instead of https://api.munt.org/api/v1/ticker
const response = await axios.get("https://blockhut.com/munt/munteuro.json");

store.dispatch("app/SET_RATE", response.data.eurxfl);
store.dispatch("app/SET_RATE", response.data.eurmunt);
} catch (error) {
console.error(error);
} finally {
Expand Down

0 comments on commit 7e0bca7

Please sign in to comment.