Skip to content

Commit b8e28ae

Browse files
committed
chore: update default user limit to 1 million
Changed the default user limit from 10 million to 1 million to better manage resource allocation and performance.
1 parent 1bad20a commit b8e28ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/data/users.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const cities = [
2828

2929
export const ages = [22, 26, 30, 34, 38, 42];
3030

31-
export const defaultLimit = 10_000_000;
31+
export const defaultLimit = 1_000_000;
3232

3333
export const users: User[] = Array.from(
3434
{ length: defaultLimit },

0 commit comments

Comments
 (0)