hideBackButtons hides back navigation buttons in the widget UI. Use it when you want to keep users in a specific flow—for example, during a guided link experience where returning to the flow or connector list would break the intended path.
Where it applies
hideBackButtons is supported in three places in Widget v3:
| Surface | Type | Description |
|---|---|---|
<Widget /> | React prop | Hides back buttons for flows opened through the widget container. |
<Connections /> | React prop | Hides back buttons for inline connection flows rendered in your app. |
link() | Function parameter | Hides back buttons when opening the widget directly to a connector. |
React: Widget
PasshideBackButtons to <Widget /> when you mount the widget container in your app:
React: Connections
PasshideBackButtons to <Connections /> for inline connection flows:
JavaScript: link
PasshideBackButtons when calling link() to open the widget to a specific connector. This is the most common use case—it prevents users from navigating back to the flow selection screen after you deep-link them into a connector.
link reference for all supported parameters.