Skip to content

Commit

Permalink
plaintext
Browse files Browse the repository at this point in the history
fix: correct Spacer size prop in NewCategoryDialog component

- Updated the Spacer components size prop from 3xs to h-3xs to ensure proper spacing in the NewCategoryDialog modal.
  • Loading branch information
ryota-murakami committed Jul 24, 2024
1 parent 1f8d59a commit 91e7814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/dashboard/NewCategoryDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const NewCategoryDialog: React.FC<Props> = () => {
<dialog id="new_category_modal" className="modal">
<div className="modal-box">
<h1 className="text-xl font-bold">New Category</h1>
<Spacer size="3xs" />
<Spacer size="h-3xs" />
<form>
<input
type="text"
Expand Down

0 comments on commit 91e7814

Please sign in to comment.