(ctx: StateContext)
| 3 | import { setInitialRenderState } from "@/utils/setInitialRenderState"; |
| 4 | |
| 5 | export function setDidLayout(ctx: StateContext) { |
| 6 | const state = ctx.state; |
| 7 | state.queuedInitialLayout = true; |
| 8 | checkAtBottom(ctx); |
| 9 | |
| 10 | setInitialRenderState(ctx, { didLayout: true }); |
| 11 | } |
no test coverage detected