Skip to content

Commit

Permalink
fix : lp-317 - remove redundant await - sq
Browse files Browse the repository at this point in the history
  • Loading branch information
lduranteau committed Dec 18, 2024
1 parent 801b924 commit aec5dfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/application/CacheService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class CacheService {
this.cacheRepository = cacheRepository;
}

async getDataFromCache(session: Session): Promise<Record<string, any>> {
return await this.cacheRepository.getData(session);
getDataFromCache(session: Session): Promise<Record<string, any>> {
return this.cacheRepository.getData(session);
}

async addDataToCache(
Expand Down

0 comments on commit aec5dfb

Please sign in to comment.