feat: wire screenshot upload into wizard inline submit flow, remove post-submit interstitial (Tasks 2.2-2.4)

This commit is contained in:
2026-05-10 04:59:48 +08:00
parent 7560cca4e6
commit aa4509ede8
2 changed files with 32 additions and 91 deletions
+4 -4
View File
@@ -30,10 +30,10 @@ interface ReviewStepProps {
onSubmit: () => void
isSubmitting: boolean
error: string | null
screenshotFiles?: File[]
onScreenshotFilesChange?: (files: File[]) => void
screenshotUploading?: boolean
screenshotError?: string | null
screenshotFiles: File[]
onScreenshotFilesChange: (files: File[]) => void
screenshotUploading: boolean
screenshotError: string | null
}
function SectionHeader({ icon: Icon, label }: { icon: React.ElementType; label: string }) {