fix store message

This commit is contained in:
amazuecos
2025-03-17 23:16:11 +01:00
parent 4ef91da9b3
commit d417db18e2
2 changed files with 8 additions and 6 deletions

View File

@ -92,7 +92,7 @@ export const alertSuccess = (value, target = 'body',options = {}) => {
iconColor: 'white',
target: target,
showConfirmButton: false,
timer: 2000,
timer: 6000,
timerProgressBar: true,
...options,
})
@ -109,7 +109,7 @@ export const alertError = (value, target = 'body',options = {}) => {
iconColor: 'white',
target: target,
showConfirmButton: false,
timer: 2000,
timer: 6000,
timerProgressBar: true,
...options
})
@ -126,7 +126,7 @@ export const alertWarning = (value, target = 'body',options = {}) => {
iconColor: 'white',
target: target,
showConfirmButton: false,
timer: 2000,
timer: 6000,
timerProgressBar: true,
...options
})