New Cloudinary update onSuccess does not upload more than one file
// image-upload.tsx “use client”; import { useState, useEffect } from “react”; import { Button } from “./button”; import { ImagePlusIcon, Trash } from “lucide-react”; import Image from “next/image”; import { CldUploadWidget } from “next-cloudinary”; interface ImageUploadProps { disabled?: boolean; onChange: (value: string) => void; onRemove: (value: string) => void; value: string[]; } const ImageUpload: React.FC<ImageUploadProps> […]
Cloudinary does not allow me to upload multiple images
// image-upload.tsx “use client”; import { useState, useEffect } from “react”; import { Button } from “./button”; import { ImagePlusIcon, Trash } from “lucide-react”; import Image from “next/image”; import { CldUploadWidget } from “next-cloudinary”; interface ImageUploadProps { disabled?: boolean; onChange: (value: string) => void; onRemove: (value: string) => void; value: string[]; } const ImageUpload: React.FC<ImageUploadProps> […]