Skip to main content

Pitfall — Start button does nothing

Symptom

  • Clicking “Start” leaves the UI unchanged; status stays “idle”.

Root cause

  • Component never subscribes to the runtime store, so state changes don’t trigger rerenders.

Fix

“use client” import React from “react” import from “@formlink/runtime”

Notes

  • Wrapping with RuntimeProvider is optional for Devtools/contexts, but subscription is required for reactivity.