Skip to content

Commit

Permalink
Merge pull request #5 from KillahB33/style-adjust
Browse files Browse the repository at this point in the history
adjusting styling, enlarging table
  • Loading branch information
KillahB33 authored Aug 19, 2024
2 parents 18dc269 + 3f16505 commit 6a87542
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions web/components/AddModForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ const AddModForm: React.FC = () => {
direction="row"
wrap="nowrap"
pr="10px"
pb="20px"
>
<Text size="lg">Add Mod</Text>
<TextInput
Expand Down
3 changes: 1 addition & 2 deletions web/components/ModTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,9 @@ const ModTable: React.FC = () => {

return (
<ScrollArea
h={300}
h={600}
w="90%"
m="0 auto"
pt="20px"
onScrollPositionChange={({ y }) => setScrolled(y !== 0)}
>
<Table miw={700}>
Expand Down
1 change: 0 additions & 1 deletion web/pages/api/update-mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 6a87542

Please sign in to comment.