V 2.1.0 Verbesserungen von Claude Code eingeügt

This commit is contained in:
2026-04-27 10:24:29 +02:00
parent e4d771fb65
commit 8e2fa896de
11 changed files with 85 additions and 47 deletions

View File

@@ -25,6 +25,7 @@ export default function Home() {
'Cache-Control': 'no-cache',
},
});
if (!response.ok) throw new Error(`HTTP ${response.status}`);
const data = await response.json();
if (data.success && isMounted) {
setEntries(data.data);
@@ -50,6 +51,7 @@ export default function Home() {
'Cache-Control': 'no-cache',
},
});
if (!response.ok) throw new Error(`HTTP ${response.status}`);
const data = await response.json();
if (data.success) {
setEntries(data.data);