mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-21 16:55:25 +03:00
Fix brace not being in the same line as else
This commit is contained in:
parent
e1e3081052
commit
906d6017e4
1 changed files with 1 additions and 2 deletions
|
@ -609,8 +609,7 @@ function Compose({
|
|||
const file = item.getAsFile();
|
||||
if (supportedMimeTypes !== undefined && !supportedMimeTypes.includes(file.type)) {
|
||||
unsupportedFiles.push(file);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
files.push(file);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue