Open GrishmaM opened 7 years ago
me too. even if durationToShow set to 0.
durationToShow: props.durationToShow || 350 is not right.but when i set to 1, displays always very slow
ctrl + T is solve
duration: props.duration || 3000, this statement is wrong(when duration is 0). the right: duration: props.duration !== 'undefined' ? props.duration : 3000
After my api call i'm setting the error message to messageBar, but it take too long to appear on screen
y is it so ?