[web] auth: update force sign up max auth points (#1591)

This commit is contained in:
Nitesh Seram 2025-07-30 13:05:47 +05:30 committed by GitHub
parent 802f1cbd9d
commit c74787651b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import { useAuthSignupDialogContext } from './AuthSignupDialogContext';
type EntityType = 'coding' | 'quiz' | 'system-design';
const AUTH_SIGN_UP_POINTS_KEY = 'auth:sign-up:points';
const MAX_POINTS = 8;
const MAX_POINTS = 20;
const ENTITY_POINTS: Record<EntityType, number> = {
coding: 2,