From 3f16505bc9d67ee067be5e4bfeca7ec88f8bf476 Mon Sep 17 00:00:00 2001 From: KillahBee Date: Mon, 19 Aug 2024 15:32:54 -0400 Subject: [PATCH] adjusting styling, enlarging table --- web/components/AddModForm.tsx | 1 + web/components/ModTable/index.tsx | 3 +-- web/pages/api/update-mod.ts | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/web/components/AddModForm.tsx b/web/components/AddModForm.tsx index c1a8c44..0af9e7c 100644 --- a/web/components/AddModForm.tsx +++ b/web/components/AddModForm.tsx @@ -81,6 +81,7 @@ const AddModForm: React.FC = () => { direction="row" wrap="nowrap" pr="10px" + pb="20px" > Add Mod { return ( setScrolled(y !== 0)} > diff --git a/web/pages/api/update-mod.ts b/web/pages/api/update-mod.ts index 836f764..b1eae32 100644 --- a/web/pages/api/update-mod.ts +++ b/web/pages/api/update-mod.ts @@ -14,7 +14,6 @@ const updateModFromGitHub = async ( if (req.method !== "POST") { return res.status(405).json({ error: "Method not allowed" }); } - console.log(req.body); const { githubUrl, folderName } = req.body; if (!githubUrl || !folderName) {