We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed7e504 commit 000e465Copy full SHA for 000e465
src/pages/editor.tsx
@@ -75,7 +75,9 @@ const EditorPage = () => {
75
76
useEffect(() => {
77
const isUpgradeShown = Cookie.get("upgrade_shown");
78
- if (!isUpgradeShown) setVisible("UpgradeModal", true);
+ if (!isUpgradeShown) {
79
+ setTimeout(() => setVisible("UpgradeModal", true), 30_000);
80
+ }
81
}, [setVisible]);
82
83
0 commit comments