diff --git a/services/web/frontend/js/features/ide-redesign/utils/new-editor-utils.ts b/services/web/frontend/js/features/ide-redesign/utils/new-editor-utils.ts index 8e08a454d4..50eda5c5a4 100644 --- a/services/web/frontend/js/features/ide-redesign/utils/new-editor-utils.ts +++ b/services/web/frontend/js/features/ide-redesign/utils/new-editor-utils.ts @@ -5,8 +5,8 @@ import { isSplitTestEnabled, getSplitTestVariant } from '@/utils/splitTestUtils' export const ignoringUserCutoffDate = new URLSearchParams(window.location.search).get('skip-new-user-check') === 'true' -// TODO: change this when we have a launch date -const NEW_USER_CUTOFF_DATE = new Date('2100-01-01') + +const NEW_USER_CUTOFF_DATE = new Date(Date.UTC(2025, 8, 23, 13, 0, 0)) // 2pm British Summer Time on September 23, 2025 export const isNewUser = () => { if (ignoringUserCutoffDate) return true