Skip to content

Commit f082516

Browse files
fix: spelling (#1115)
2 parents 3eddf47 + 22f6bcb commit f082516

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/api/src/app/shared/exceptions/max-records.exception.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import { numberFormatter } from '@impler/shared';
33

44
export class MaxRecordsExceededException extends BadRequestException {
55
constructor({ maxAllowed, customMessage = null }: { maxAllowed: number; customMessage?: string }) {
6-
super(customMessage || `You can nor import records more than ${numberFormatter(maxAllowed)} records.`);
6+
super(customMessage || `You can not import records more than ${numberFormatter(maxAllowed)} records.`);
77
}
88
}

0 commit comments

Comments
 (0)