Skip to content

Commit

Permalink
[fix]レビュー修正
Browse files Browse the repository at this point in the history
  • Loading branch information
KazumaSun committed Mar 21, 2024
1 parent 4a7497e commit ccd8f94
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ interface Props {
children?: React.ReactNode;
sponsorActivitiesViewItem: SponsorActivityView;
setIsOpen: (isOpen: boolean) => void;
isDisabled?: boolean;
}

const OpenPaymentDayModalButton: React.FC<Props> = (props) => {
const [isPaymentDayModalOpen, setIsPaymentDayModalOpen] = useState(false);
const onOpen = () => {
setIsPaymentDayModalOpen(true);
// props.setIsOpen(false)
};

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function PaymentDayModal(props: ModalProps) {
}}
/>
</div>
<p className='mx-auto mb-7 w-fit text-2xl font-thin leading-8 tracking-widest text-black-600'>入金日の入力</p>
<p className='mx-auto mb-7 w-fit text-2xl font-thin leading-8 tracking-widest text-black-600'>入金日を入力</p>
<div className='col-span-4 w-full'>
<Input
type='date'
Expand Down

0 comments on commit ccd8f94

Please sign in to comment.