You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used a React component with a modal. When I click on the "Browse Files" button, it doesn't load the file or work properly.
How to recreate: Just install library in your project and then use the example code provided on docs.
I used a React component with a modal. When I click on the "Browse Files" button, it doesn't load the file or work properly.
How to recreate: Just install library in your project and then use the example code provided on docs.
versions:
csv-import-react: ^1.0.11
react: ^18.3.1
Component code:
`import { useState } from "react";
import { CSVImporter } from "csv-import-react";
const CsvImportComponent: React.FC = () => {
const [isOpen, setIsOpen] = useState(false);
return (
<>
<button onClick={() => setIsOpen(true)}>Open CSV Importer
);
};
export default CsvImportComponent;`
When i use browse files button it doesnt work. Only drag functionality if working
The text was updated successfully, but these errors were encountered: