fix: impersonation, dashboard counter, logo lightbox, submission config, auth logs
All checks were successful
Build and Push Docker Image / build (push) Successful in 9m12s
All checks were successful
Build and Push Docker Image / build (push) Successful in 9m12s
- Fix impersonation by bypassing useSession().update() loading gate with direct session POST - Fix dashboard account counter defaulting to latest round with PASSED projects - Add clickToEnlarge lightbox for project logos on admin detail page - Remove submission eligibility config (all passed projects must upload) - Suppress CredentialsSignin auth errors in production (minified name check) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -160,19 +160,6 @@ export type EvaluationConfig = z.infer<typeof EvaluationConfigSchema>
|
||||
|
||||
export const SubmissionConfigSchema = z.object({
|
||||
...generalSettingsFields,
|
||||
eligibleStatuses: z
|
||||
.array(
|
||||
z.enum([
|
||||
'PENDING',
|
||||
'IN_PROGRESS',
|
||||
'PASSED',
|
||||
'REJECTED',
|
||||
'COMPLETED',
|
||||
'WITHDRAWN',
|
||||
]),
|
||||
)
|
||||
.default(['PASSED']),
|
||||
|
||||
notifyEligibleTeams: z.boolean().default(true),
|
||||
lockPreviousWindows: z.boolean().default(true),
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user