From daf6df6c038d8c05ea7ab24f94224a54f2cd7b65 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 21 May 2025 21:53:24 +0000 Subject: [PATCH] style: format code with Prettier This commit fixes the style issues introduced in d725e2f according to the output from Prettier. Details: None --- packages/states/src/proxy.svelte.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/states/src/proxy.svelte.js b/packages/states/src/proxy.svelte.js index 7fba6ea99..4a3e2e1b2 100644 --- a/packages/states/src/proxy.svelte.js +++ b/packages/states/src/proxy.svelte.js @@ -13,7 +13,7 @@ export class Proxy { this.fields = fields this.#original = value this.#value = typeof value === 'object' ? value : { [this.fields.text]: value } - this.id = typeof value === 'object' ? (this.get('id') ?? id()) : value + this.id = typeof value === 'object' ? this.get('id') ?? id() : value } #processChildren() {