Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
guesung committed Jan 24, 2024
1 parent 7434a9b commit d448665
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ export default function Step1InputForm({ onPrev }: Step1InputFormProps) {
control,
});

const { handleFileUploadClick, isPending, previewImage } = useFileUpload((files) =>
onChange(files[0])
);
const { handleFileUploadClick, previewImage } = useFileUpload((files) => onChange(files[0]));

const isAllTyped = formState.isValid && !!watch('gender') && personalities.length;

Expand Down Expand Up @@ -71,7 +69,6 @@ export default function Step1InputForm({ onPrev }: Step1InputFormProps) {
imageUrl={previewImage || value}
size="large"
iconVariant="draft_orders"
isPending={isPending}
onClick={handleFileUploadClick}
/>
</Flex>
Expand Down

0 comments on commit d448665

Please sign in to comment.