[F] Fix types

This commit is contained in:
Azalea
2025-03-17 14:02:50 -04:00
parent f7e5cd1a05
commit 7320f0ca7f
4 changed files with 9 additions and 14 deletions

View File

@@ -189,6 +189,6 @@ export const SETTING = {
export const TRANSFER = {
check: (d: AllNetClient): Promise<TrCheckGood> =>
post('/api/v2/transfer/check', d),
post('/api/v2/transfer/check', {}, { body: JSON.stringify(d), headers: { 'Content-Type': 'application/json' } }),
}