We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3eddf47 + 22f6bcb commit f082516Copy full SHA for f082516
apps/api/src/app/shared/exceptions/max-records.exception.ts
@@ -3,6 +3,6 @@ import { numberFormatter } from '@impler/shared';
3
4
export class MaxRecordsExceededException extends BadRequestException {
5
constructor({ maxAllowed, customMessage = null }: { maxAllowed: number; customMessage?: string }) {
6
- super(customMessage || `You can nor import records more than ${numberFormatter(maxAllowed)} records.`);
+ super(customMessage || `You can not import records more than ${numberFormatter(maxAllowed)} records.`);
7
}
8
0 commit comments