We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 015899a commit 700947cCopy full SHA for 700947c
example/src/App.tsx
@@ -104,7 +104,7 @@ export default function App() {
104
105
const handleError = (e: any) => {
106
if (e instanceof AkilesError) {
107
- setResult('Error: ' + JSON.stringify(e));
+ setResult('Error: ' + e.message + ' ' + JSON.stringify(e));
108
} else {
109
// Handle unexpected errors
110
console.error('Unexpected error:', e);
0 commit comments