Skip to content

Commit ad60427

Browse files
Shradha JainShradha Jain
authored andcommitted
Fix For Error message appears then hides then re-appears in checkout
1 parent 91549b9 commit ad60427

File tree

1 file changed

+4
-1
lines changed
  • app/code/Magento/Ui/view/frontend/web/js/view

1 file changed

+4
-1
lines changed

app/code/Magento/Ui/view/frontend/web/js/view/messages.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ define([
6868
// Hide message block if needed
6969
if (isHidden) {
7070
setTimeout(function () {
71-
$(this.selector).hide('blind', {}, this.hideSpeed);
71+
$(this.selector).hide('slow');
72+
73+
//commented because effect-blind.js(1.13.1) is having show & hide issue
74+
// $(this.selector).hide('blind', {}, this.hideSpeed);
7275
}.bind(this), this.hideTimeout);
7376
}
7477
}

0 commit comments

Comments
 (0)