Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove left margin from add button
  • Loading branch information
regalijan committed Nov 8, 2023
1 parent 2debce8 commit bd7e629
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions components/GameModManagementModal.tsx
Expand Up @@ -148,9 +148,7 @@ export default function (props: { isOpen: boolean; onClose: () => void }) {
onChange={(e) => setUserToAdd(e.target.value)}
placeholder="1234567890987654321"
/>
<Button ml="8px" onClick={async () => await addUser(userToAdd)}>
Add
</Button>
<Button onClick={async () => await addUser(userToAdd)}>Add</Button>
</HStack>
</ModalBody>
</ModalContent>
Expand Down

0 comments on commit bd7e629

Please sign in to comment.