Skip to content

E205 - initial_scroll_position exceeds scroll_range

Cause

A slide's initial_scroll_position: is larger than its (numeric) scroll_range:. The starting position must fall within the scrollable range.

Example

{ title: "T", elements: [...], scroll_range: 100, initial_scroll_position: 150 }

How to fix

Reduce initial_scroll_position to fit within [0, scroll_range], or increase scroll_range.