Skip to content

Commit

Permalink
Prefer return instead of return await
Browse files Browse the repository at this point in the history
Co-authored-by: Hugo Alliaume <[email protected]>
  • Loading branch information
smnandre and Kocal authored Jan 5, 2025
1 parent fe92cc7 commit f81dcff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LiveComponent/assets/src/Backend/BackendResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ export default class {
}

async getBlob(): Promise<Blob> {
return await this.response.blob();
return this.response.blob();
}
}

0 comments on commit f81dcff

Please sign in to comment.