fix: remove content-type header on draft deletion

This commit is contained in:
Tim
2025-07-06 10:30:17 +08:00
parent e4eb0cb82a
commit 6cb94a9baa

View File

@@ -78,7 +78,6 @@ export default {
const res = await fetch(`${API_BASE_URL}/api/drafts/me`, {
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`
}
})