We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27a678a commit 792954bCopy full SHA for 792954b
adev/src/content/guide/signals/linked-signal.md
@@ -72,7 +72,7 @@ export class ShippingMethodPicker {
72
console.log(this.selectedOption()); // {"id":2,"name":"Postal Service"}
73
}
74
75
- shippingOptions: WritableSignal<ShippingMethod[]> = signal([
+ shippingOptions = signal<ShippingMethod[]>([
76
{ id: 0, name: 'Ground' },
77
{ id: 1, name: 'Air' },
78
{ id: 2, name: 'Sea' },
0 commit comments