fix: missing async
This commit is contained in:
parent
b6b06acce5
commit
e6295ed764
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ export class MySQLPredicateRepository implements PredicateRepositoryInterface {
|
|||
private ormRepository: Repository<Predicate>,
|
||||
) {}
|
||||
|
||||
save(predicate: Predicate): Promise<Predicate> {
|
||||
async save(predicate: Predicate): Promise<Predicate> {
|
||||
return this.ormRepository.save(predicate)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue