diff --git a/pages/draw.tsx b/pages/draw.tsx index 8fa28b6..b3eb914 100644 --- a/pages/draw.tsx +++ b/pages/draw.tsx @@ -32,10 +32,12 @@ class Draw extends React.Component { this.addPonixToStorage(p); } - this.setState({ - stage: isPonixEmpty(p) ? "failed" : "success", - ponix: p, - }); + setTimeout(() => { + this.setState({ + stage: isPonixEmpty(p) ? "failed" : "success", + ponix: p, + }); + }, 2 * 1000); }); };