feat: add slight delay to pod status update on change notification

This commit is contained in:
biersoeckli
2025-12-29 10:47:02 +00:00
parent faf7273384
commit 7b63b9c051

View File

@@ -46,7 +46,8 @@ export default function Logs({
updateBuilds();
const unsubscribe = subscribeToStatusChanges((changedAppIds) => {
if (changedAppIds.includes(app.id)) {
updateBuilds();
setTimeout(() =>
updateBuilds(), 500); // slight delay to ensure data is updated
}
});
return () => unsubscribe();