Skip to content

Commit

Permalink
Merge pull request #96 from KelvinTegelaar/dev
Browse files Browse the repository at this point in the history
[pull] dev from KelvinTegelaar:dev
  • Loading branch information
pull[bot] authored Feb 12, 2025
2 parents 2cd6e01 + 211e379 commit c607084
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/tools/community-repos/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ const Page = () => {
});

const handleCreateRepo = (values) => {
console.log(values);
createMutation.mutate({
url: "/api/ExecGitHubAction",
data: {
Expand Down Expand Up @@ -265,13 +264,14 @@ const Page = () => {
</DialogContent>
<DialogActions>
<Button variant="outlined" onClick={() => setOpenCreate(false)} startIcon={<Close />}>
Cancel
Close
</Button>
<Button
variant="contained"
type="submit"
onClick={createForm.handleSubmit(handleCreateRepo)}
startIcon={<Add />}
disabled={createMutation.isPending}
>
Create
</Button>
Expand Down Expand Up @@ -386,7 +386,7 @@ const Page = () => {
No search results found. Refine your query and try again.
</Alert>
))}
<Box sx={{ overflowY: "scroll", maxHeight: 300 }}>
<Box sx={{ overflowY: "scroll", maxHeight: 300, mb: 1.5 }}>
{results.map((r) => (
<Card key={r.id} variant="outlined" sx={{ mt: 1.5, mr: 1 }}>
<CardContent>
Expand Down

0 comments on commit c607084

Please sign in to comment.