We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cc4bd0 commit accf1baCopy full SHA for accf1ba
azure-upload-file-to-storage/app/src/App.tsx
@@ -59,7 +59,7 @@ function App() {
59
})
60
.then((response) => {
61
if (!response.ok) {
62
- throw new Error(`Error: ${response.statusText}`);
+ throw new Error(`Error: ${response.status} ${response.statusText} - URL: ${url}`);
63
}
64
return response.json();
65
0 commit comments