Merge branch 'fix-mfa' into 'main'

MastodonResponse: use .passthrough() on errorSchema

Closes #1801

See merge request soapbox-pub/soapbox!3305
This commit is contained in:
Alex Gleason 2024-12-26 17:22:28 +00:00
commit c5a745957a
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ export class MastodonResponse extends Response {
z.string(), z.string(),
z.object({ error: z.string(), description: z.string() }).array(), z.object({ error: z.string(), description: z.string() }).array(),
).optional(), ).optional(),
}); }).passthrough();
} }
} }