Skip to content

Commit

Permalink
update path
Browse files Browse the repository at this point in the history
  • Loading branch information
elproffesore committed Jul 6, 2024
1 parent a383f0c commit e82a72d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ function updateMenu(resp) {
updateMenuProgress.value = resp.progress
}
onMounted(async () => {
const response = await fetch('/crisis.json', {
const response = await fetch('./crisis.json', {
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
})
data.statistics = await response.json()
selectedOptionPerceivedTruth.value = Object.keys(data.statistics.Crisis.FeltRealities)[0]
const responseTime = await fetch('/crisis_overtime.json', {
const responseTime = await fetch('./crisis_overtime.json', {
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
Expand Down

0 comments on commit e82a72d

Please sign in to comment.