diff --git a/src/renderer/components/dock/logs/use-initial-scroll-to-bottom.ts b/src/renderer/components/dock/logs/use-initial-scroll-to-bottom.ts index 164df8aab6..98910c77ab 100644 --- a/src/renderer/components/dock/logs/use-initial-scroll-to-bottom.ts +++ b/src/renderer/components/dock/logs/use-initial-scroll-to-bottom.ts @@ -7,8 +7,9 @@ import type { LogTabViewModel } from "./logs-view-model"; export function useInitialScrollToBottom(model: LogTabViewModel, callback: () => void) { useEffect(() => { + // TODO: Consider more precise way to check when list ready to scroll setTimeout(() => { callback(); - }, 300); // Giving some time virtual library to render its rows + }, 800); // Giving some time virtual library to render its rows }, [model.logTabData.get()?.selectedPodId]); }