Skip to content

Commit f70a9cd

Browse files
smashingtagsclaude
andcommitted
fix: silence container fetch error toast on demo/fresh installs
No deployed containers is normal state. Don't show a red error toast every 10 seconds when Docker container list fails or times out. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 76b430b commit f70a9cd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/App.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ export default function App() {
149149
}));
150150
setDeployedApps(apps);
151151
} catch (err) {
152-
showError('Failed to fetch containers', 'Unable to connect to Docker or retrieve container information');
152+
// Silently fail - no deployed containers is normal for fresh installs/demos
153+
console.warn('Container fetch failed:', err);
153154
}
154155
};
155156

0 commit comments

Comments
 (0)