sync-docs-and-fixes
All checks were successful
CI / build-deploy (push) Successful in 4m39s

This commit is contained in:
SpecialX
2026-03-03 17:32:26 +08:00
parent 538805bad0
commit eb08c0ab68
73 changed files with 2218 additions and 422 deletions

View File

@@ -149,8 +149,8 @@ export const omitScheduledAtFromDescription = (description: string | null): stri
try {
const meta = JSON.parse(description)
if (typeof meta === "object" && meta !== null) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const { scheduledAt, ...rest } = meta as any
const rest = { ...(meta as Record<string, unknown>) }
delete rest.scheduledAt
return JSON.stringify(rest)
}
return description