Skip to content

Commit

Permalink
remvoing unnecessary await
Browse files Browse the repository at this point in the history
  • Loading branch information
jvigliotta committed Apr 25, 2024
1 parent 5857625 commit 7e0e95a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/venues/VenueService.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ class VenueService {
if (!this.selectionPromise) {
this.selectionPromise = this.getVenueSelectionFromUser();
}
return await this.selectionPromise;

return this.selectionPromise;
}

async getVenueSelectionFromUser() {
Expand Down

0 comments on commit 7e0e95a

Please sign in to comment.