From c674c0cab6e43a93522e399ab0ea09871613e2ea Mon Sep 17 00:00:00 2001 From: James Murdza Date: Sun, 18 Aug 2024 07:16:59 -0700 Subject: [PATCH] fix: uncomment Dokku deployment code --- frontend/components/editor/navbar/deploy.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/components/editor/navbar/deploy.tsx b/frontend/components/editor/navbar/deploy.tsx index ea1657e..a8874db 100644 --- a/frontend/components/editor/navbar/deploy.tsx +++ b/frontend/components/editor/navbar/deploy.tsx @@ -24,9 +24,9 @@ export default function DeployButtonModal({ } else { console.log("Starting deployment..."); setIsDeploying(true); - // deploy(() => { - // setIsDeploying(false); - // }); + deploy(() => { + setIsDeploying(false); + }); } };