Browse Source

Remove TODO comment from types.ts

Removed TODO comment for more validation.
pull/2226/head
Alexander Chepurnoy 8 months ago
committed by GitHub
parent
commit
eba217edfa
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/server/utils/types.ts

2
src/server/utils/types.ts

@ -27,7 +27,7 @@ export const MtuSchema = z
.max(9000, { message: t('zod.mtu') }); .max(9000, { message: t('zod.mtu') });
export const JcSchema = z.number().min(1).max(128).nullable(); export const JcSchema = z.number().min(1).max(128).nullable();
// TODO: more validation
export const JminSchema = z.number().max(1279).nullable(); export const JminSchema = z.number().max(1279).nullable();
export const JmaxSchema = z.number().max(1280).nullable(); export const JmaxSchema = z.number().max(1280).nullable();

Loading…
Cancel
Save