Skip to content

Commit ac39619

Browse files
committed
refactor: 공백 제거
1 parent 56c2283 commit ac39619

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/qr.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ export class QRLoginTokenService {
66
constructor(private qrRepo: QRLoginTokenRepository) {}
77

88
async create(userId: number, ip: string, userAgent: string): Promise<string> {
9-
const token = randomUUID();
9+
const token = randomUUID();
1010
await this.qrRepo.createQRLoginToken(token, userId, ip, userAgent);
1111
return token;
1212
}
1313

1414
async getByToken(token: string): Promise<QRLoginToken | null> {
1515
return await this.qrRepo.findQRLoginToken(token);
1616
}
17-
}
17+
}

0 commit comments

Comments
 (0)