Skip to content

Commit

Permalink
EEB 39: Fix small issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kiri-diaconu committed Dec 15, 2023
1 parent 02241f9 commit adc7d60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/store/by-filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const byFilters = {
const data = response.data
commit('setReviewingServices', data)
})
.catch(function (error) {
.catch(function () {
state.error = "An unexpected server error occured. Please try again in a moment..."
})
.finally(() => {
Expand Down Expand Up @@ -161,7 +161,7 @@ export const byFilters = {
const data = response.data
commit('setRecords', data)
})
.catch(function (error) {
.catch(function () {
state.error = "An unexpected server error occurred. Please try again in a moment..."
})
.finally(() => {
Expand Down

0 comments on commit adc7d60

Please sign in to comment.