We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e0e753 commit 8253d8aCopy full SHA for 8253d8a
src/pages/main/index.tsx
@@ -102,13 +102,23 @@ export const MainPage: React.FC = () => {
102
<S.MainPageCheckBoxSection>
103
<CheckBox
104
click={() => {
105
- setRetentionPeriod(!retentionPeriod);
+ setRetentionPeriod(false);
106
+ toast.success('제작중!', {
107
+ autoClose: 1000,
108
+ position: toast.POSITION.BOTTOM_RIGHT,
109
+ });
110
}}
111
isCheck={retentionPeriod}
112
label={'유지기간'}
113
/>
114
- click={() => setDownloadCount(!downloadCount)}
115
+ click={() => {
116
+ setDownloadCount(false);
117
118
119
120
121
+ }}
122
isCheck={downloadCount}
123
label={'다운로드 횟수'}
124
0 commit comments