Remove backward compatibility code for suffixes in
InputFileComponent
This commit is contained in:
parent
0737b578d1
commit
7700a72506
1 changed files with 0 additions and 12 deletions
|
|
@ -18,18 +18,6 @@ export default function InputFileComponent({
|
|||
const { setErrorData } = useContext(alertContext);
|
||||
const { tabId } = useContext(FlowsContext);
|
||||
|
||||
// For backward compatibility, if the suffixes are not provided, allow use fileTypes instead
|
||||
if (!suffixes) {
|
||||
// if fileTypes does not have '.' at the beginning, add it
|
||||
// and use it as suffixes
|
||||
suffixes = fileTypes.map((fileType) => {
|
||||
if (!fileType.startsWith(".")) {
|
||||
return "." + fileType;
|
||||
}
|
||||
return fileType;
|
||||
});
|
||||
}
|
||||
|
||||
// Clear component state
|
||||
useEffect(() => {
|
||||
if (disabled) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue