Skip to content

Commit 0a5119f

Browse files
nielslyngsoeiOvergaard
authored andcommitted
revert
1 parent 31373a2 commit 0a5119f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/uui-file-dropzone/lib/uui-file-dropzone.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class UUIFileDropzoneElement extends LabelMixin('', LitElement) {
134134
if (entry.kind === 'file') {
135135
const file = entry.getAsFile();
136136
if (!file) continue;
137-
if (await this._isAccepted(acceptList, wildcards, file)) {
137+
if (this._isAccepted(acceptList, wildcards, file)) {
138138
fileEntries.push(file);
139139
}
140140
} else if (entry.kind === 'directory') {

0 commit comments

Comments
 (0)