Skip to content

Commit

Permalink
Fix apps settings error message timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <chrng8@gmail.com>
  • Loading branch information
Pytal committed Mar 1, 2022
1 parent 3026d57 commit f1518f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/settings/src/store/apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const state = {
const mutations = {

APPS_API_FAILURE(state, error) {
showError(t('settings', 'An error occured during the request. Unable to proceed.') + '<br>' + error.error.response.data.data.message, { timeout: 7, isHTML: true })
showError(t('settings', 'An error occured during the request. Unable to proceed.') + '<br>' + error.error.response.data.data.message, { isHTML: true })
console.error(state, error)
},

Expand Down

0 comments on commit f1518f5

Please sign in to comment.