final fix

This commit is contained in:
FreezyEx 2022-10-13 16:09:05 +02:00
parent b32527e057
commit ce9ea1f580
2 changed files with 3 additions and 3 deletions

View File

@ -341,7 +341,7 @@ export default {
if (currency !== this.nativeCurrency) {
this.$store.dispatch('application/setDefaultEthToReceive', { currency })
}
this.$store.dispatch('loading/updateProgress', { progress: 100 })
this.$store.dispatch('loading/updateProgress', { progress: -1 })
this.depositsPast = Number(depositsPast) <= 0 ? 0 : depositsPast
this.depositTxHash = txHash
this.depositTimestamp = timestamp

View File

@ -1,7 +1,7 @@
export const state = () => {
return {
message: '',
progress: '',
progress: -1,
enabled: false,
type: null
}
@ -19,7 +19,7 @@ export const state = () => {
DISABLE(state) {
state.message = ''
state.enabled = false
state.progress = ''
state.progress = -1
state.type = null
}
}