Skip to content

Commit d448ea1

Browse files
committed
Remove Unused Params
1 parent 21011da commit d448ea1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firebase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default class FirebaseStorageAdapter extends BaseAdapter {
3030
this.domainName = config.domainName;
3131
}
3232

33-
async exists(fileName: string, _targetDir: string): Promise<boolean> {
33+
async exists(fileName: string): Promise<boolean> {
3434
const targetDirectory = this.getTargetDir(this.basePath);
3535
const filesExists = await this.bucket.file(join(targetDirectory, fileName)).exists();
3636
return filesExists[0];

0 commit comments

Comments
 (0)