Skip to content

Commit 0210aab

Browse files
committed
- fix: 은행 계좌 regex 길이제한 수정
1 parent 1f1e9c2 commit 0210aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/accounting/accounting.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { ConfirmAccountingRequestDto } from "@src/accounting/dto/confirm-account
3030

3131
@Injectable()
3232
export class AccountingService implements OnModuleInit {
33-
private readonly ACCOUNT_REGEX = new RegExp(/^(\d{10,20})$/);
33+
private readonly ACCOUNT_REGEX = new RegExp(/^(\d{5,20})$/);
3434
private cachedBanks: BankEntity[] = [];
3535

3636
constructor(

0 commit comments

Comments
 (0)