`node scripts/process-messages`

pull/15589/head
ComputerGuy 5 months ago
parent 8ebcd913ec
commit b64fb09028

@ -222,7 +222,7 @@ To resolve this, ensure you're comparing values where both values were created w
### state_return_not_proxyable
```
The argument passed to a `$state` in a return statement must be a plain object or array. Otherwise, the `$state` call will have no effect
The argument passed to a `$state` call in a return statement must be a plain object or array. Otherwise, the `$state` call will have no effect
```
### transition_slide_display

@ -171,11 +171,11 @@ export function state_proxy_equality_mismatch(operator) {
}
/**
* The argument passed to a `$state` in a return statement must be a plain object or array. Otherwise, the `$state` call will have no effect
* The argument passed to a `$state` call in a return statement must be a plain object or array. Otherwise, the `$state` call will have no effect
*/
export function state_return_not_proxyable() {
if (DEV) {
console.warn(`%c[svelte] state_return_not_proxyable\n%cThe argument passed to a \`$state\` in a return statement must be a plain object or array. Otherwise, the \`$state\` call will have no effect\nhttps://svelte.dev/e/state_return_not_proxyable`, bold, normal);
console.warn(`%c[svelte] state_return_not_proxyable\n%cThe argument passed to a \`$state\` call in a return statement must be a plain object or array. Otherwise, the \`$state\` call will have no effect\nhttps://svelte.dev/e/state_return_not_proxyable`, bold, normal);
} else {
console.warn(`https://svelte.dev/e/state_return_not_proxyable`);
}

Loading…
Cancel
Save