We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80864c9 commit 0636971Copy full SHA for 0636971
src/components.tsx
@@ -1604,13 +1604,16 @@ export function MainContent({
1604
verifierLogState.cSourceMap.logLineToCLine.get(
1605
verifierLogState.lastInsIdx,
1606
) || "";
1607
- setSelectedAndScroll(
1608
- verifierLogState.lastInsIdx,
1609
- "",
1610
- visualIdx,
1611
- cLineIdToVisualIdx.get(clineId) || 0,
1612
- );
1613
- }, [verifierLogState]);
+ setTimeout(function () {
+ setSelectedAndScroll(
+ verifierLogState.lastInsIdx,
+ "",
+ visualIdx,
+ cLineIdToVisualIdx.get(clineId) || 0,
1614
+ );
1615
+ }, 500);
1616
+ }, [verifierLogState, logListRef]);
1617
1618
const depArrowState: DepArrowState = useMemo(() => {
1619
const arrowState = {
0 commit comments