Summary
Typo in the migration documentation section "useValue to useValue" - both the "from" and "to" examples show identical code.
Location
Page: Migrating Guide
Section: 3.0.0-beta.19 to 3.0.0-beta.20 → useValue to useValue
Issue Description
The section titled "useValue to useValue" contains identical code in both the "From" and "To" examples:
javascript// 🔴 From
const value = useValue(state$.value)
// ✅ To
const value = useValue(state$.value)
Both examples show useValue, making it impossible to understand what actually changed.
Summary
Typo in the migration documentation section "useValue to useValue" - both the "from" and "to" examples show identical code.
Location
Page: Migrating Guide
Section: 3.0.0-beta.19 to 3.0.0-beta.20 → useValue to useValue
Issue Description
The section titled "useValue to useValue" contains identical code in both the "From" and "To" examples:
javascript// 🔴 From
const value = useValue(state$.value)
// ✅ To
const value = useValue(state$.value)
Both examples show useValue, making it impossible to understand what actually changed.