disable prompts until complete

This commit is contained in:
Danny Avila 2023-03-06 08:50:36 -05:00
parent b750bd2970
commit c617b15bcd
2 changed files with 6 additions and 4 deletions

View file

@ -5,8 +5,10 @@
"main": "index.js",
"scripts": {
"start": "webpack-dev-server .",
"build": "Webpack . --watch",
"server": "npx nodemon server/index.js",
"build": "Webpack .",
"server": "npx node server/index.js",
"build-dev": "Webpack . --watch",
"server-dev": "npx nodemon server/index.js",
"test": "test"
},
"repository": {

View file

@ -93,7 +93,7 @@ export default function Landing({ title }) {
</ul>
</div>
</div>
{!showingTemplates && (
{/* {!showingTemplates && (
<div className="mt-8 mb-4 flex flex-col items-center gap-3.5 md:mt-16">
<button
onClick={showTemplates}
@ -104,7 +104,7 @@ export default function Landing({ title }) {
</button>
</div>
)}
{!!showingTemplates && <Templates showTemplates={showTemplates}/>}
{!!showingTemplates && <Templates showTemplates={showTemplates}/>} */}
<div className="group h-32 w-full flex-shrink-0 dark:border-gray-900/50 dark:bg-gray-800 md:h-48" />
</div>
</div>