Skip to content

Commit

Permalink
fix: expirationOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethen1264 committed Jun 13, 2024
1 parent 552ee82 commit 7226d1d
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ interface Props {
profileShareData: ProfileShareData[]
}

const expirationOptions = [
{ value: '5', label: '5일' },
{ value: '10', label: '10일' },
{ value: '15', label: '15일' },
{ value: '20', label: '20일' },
{ value: '25', label: '25일' },
{ value: '30', label: '30일' },
]

const ProfileShareModalSection = ({
isLinkCreated,
setPeriodDay,
Expand All @@ -35,15 +44,6 @@ const ProfileShareModalSection = ({
setPeriodDay(parseInt(event.target.value))
}

const expirationOptions = [
{ value: '5', label: '5일' },
{ value: '10', label: '10일' },
{ value: '15', label: '15일' },
{ value: '20', label: '20일' },
{ value: '25', label: '25일' },
{ value: '30', label: '30일' },
]

return (
<S.ModalSectionContainer>
<S.ModalExpirationContainer>
Expand Down

0 comments on commit 7226d1d

Please sign in to comment.