suggestion: Mixing axios and fetch for HTTP requests may lead to inconsistent error handling.
Standardizing on a single HTTP client will improve maintainability and ensure consistent error and response handling.
await api.put(signedUrl, file, {
headers: {
'Content-Type': file.type,
},
});
Originally posted by @sourcery-ai[bot] in #48 (comment)