Skip to content

Commit

Permalink
fix: await付け忘れ
Browse files Browse the repository at this point in the history
  • Loading branch information
nacika-ins committed Aug 31, 2024
1 parent 511175a commit 1f5afcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/server/api/SignupApiService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export class SignupApiService {
});

if (ticket) {
this.registrationTicketsRepository.update({ id: ticket.id }, {
await this.registrationTicketsRepository.update({ id: ticket.id }, {
usedAt: new Date(),
invitedUserId: account.id,
});
Expand Down

0 comments on commit 1f5afcf

Please sign in to comment.