@@ -43,7 +43,6 @@ const MilestoneSubmissionPage: React.FC<MilestoneSubmissionPageProps> = ({
4343 const [ isExpanded , setIsExpanded ] = useState ( true ) ;
4444 const [ additionalNotes , setAdditionalNotes ] = useState ( '' ) ;
4545
46- // Wallet protection hook
4746 const {
4847 requireWallet,
4948 showWalletModal,
@@ -174,7 +173,6 @@ const MilestoneSubmissionPage: React.FC<MilestoneSubmissionPageProps> = ({
174173 ) }
175174 </ div >
176175
177- { /* File Upload Section */ }
178176 < div className = 'bg-[#1C1C1C] border border-[#2B2B2B] rounded-xl p-6 space-y-4 self-start w-full max-w-2xl' >
179177 < div >
180178 < Label className = 'text-white font-medium text-lg' >
@@ -220,7 +218,6 @@ const MilestoneSubmissionPage: React.FC<MilestoneSubmissionPageProps> = ({
220218 />
221219 </ div >
222220
223- { /* Uploaded Files List */ }
224221 { files . length > 0 && (
225222 < div className = 'space-y-3' >
226223 < h4 className = 'text-white font-medium' > Uploaded Files</ h4 >
@@ -252,7 +249,6 @@ const MilestoneSubmissionPage: React.FC<MilestoneSubmissionPageProps> = ({
252249 ) }
253250 </ div >
254251
255- { /* External Links Section */ }
256252 < div className = 'bg-[#1C1C1C] border border-[#2B2B2B] rounded-xl p-6 space-y-4 self-start w-full max-w-2xl' >
257253 < div >
258254 < Label className = 'text-white font-medium text-lg' >
@@ -297,7 +293,6 @@ const MilestoneSubmissionPage: React.FC<MilestoneSubmissionPageProps> = ({
297293 </ BoundlessButton >
298294 </ div >
299295
300- { /* Additional Notes Section */ }
301296 < div className = 'bg-[#1C1C1C] border border-[#2B2B2B] rounded-xl p-6 space-y-4 self-start w-full max-w-2xl' >
302297 < div >
303298 < Label className = 'text-white font-medium text-lg' >
@@ -324,9 +319,7 @@ const MilestoneSubmissionPage: React.FC<MilestoneSubmissionPageProps> = ({
324319 </ div >
325320 </ div >
326321
327- { /* Sidebar */ }
328322 < div className = 'space-y-6' >
329- { /* Submission Summary */ }
330323 < div className = 'bg-[#1C1C1C] border border-[#2B2B2B] rounded-xl p-6' >
331324 < h3 className = 'text-white font-semibold text-lg mb-4' >
332325 Submission Summary
@@ -354,7 +347,6 @@ const MilestoneSubmissionPage: React.FC<MilestoneSubmissionPageProps> = ({
354347 </ div >
355348 </ div >
356349
357- { /* Guidelines */ }
358350 < div className = 'bg-[#1C1C1C] border border-[#2B2B2B] rounded-xl p-6' >
359351 < h3 className = 'text-white font-semibold text-lg mb-4' >
360352 Submission Guidelines
@@ -387,7 +379,6 @@ const MilestoneSubmissionPage: React.FC<MilestoneSubmissionPageProps> = ({
387379 </ div >
388380 </ div >
389381
390- { /* Submit Button */ }
391382 < div className = 'mt-8 pt-6 border-t border-[#2B2B2B] w-full max-w-2xl mx-auto' >
392383 < div className = 'flex items-center justify-between' >
393384 < BoundlessButton variant = 'outline' onClick = { onBack } size = 'lg' >
@@ -407,7 +398,6 @@ const MilestoneSubmissionPage: React.FC<MilestoneSubmissionPageProps> = ({
407398 </ div >
408399 </ div >
409400
410- { /* Wallet Required Modal */ }
411401 < WalletRequiredModal
412402 open = { showWalletModal }
413403 onOpenChange = { closeWalletModal }
0 commit comments