0
0
Fork 0

Fix API requests after #30818 (#30837)

This commit is contained in:
Claire 2024-06-25 18:53:03 +02:00 committed by GitHub
parent 845fe1c693
commit 2c7eed1fa1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 10 deletions

View file

@ -3,7 +3,5 @@ import type { ApiRelationshipJSON } from 'mastodon/api_types/relationships';
export const apiSubmitAccountNote = (id: string, value: string) =>
apiRequestPost<ApiRelationshipJSON>(`v1/accounts/${id}/note`, {
data: {
comment: value,
},
comment: value,
});