From e13c7d9b22c89e598dabcece31f2dd480520f7c8 Mon Sep 17 00:00:00 2001 From: ComputerGuy <63362464+Ocean-OS@users.noreply.github.com> Date: Fri, 28 Mar 2025 19:46:47 -0700 Subject: [PATCH] lint --- .../snapshot/samples/state-in-return/index.svelte.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/svelte/tests/snapshot/samples/state-in-return/index.svelte.js b/packages/svelte/tests/snapshot/samples/state-in-return/index.svelte.js index f30cdd0408..66d143f409 100644 --- a/packages/svelte/tests/snapshot/samples/state-in-return/index.svelte.js +++ b/packages/svelte/tests/snapshot/samples/state-in-return/index.svelte.js @@ -1,8 +1,8 @@ export default function proxy(object) { - return $state(object); + return $state(object); } export function createCounter() { - let count = $state(0); - count++; + let count = $state(0); + count++; } -export const proxy_in_arrow = object => $state(object); \ No newline at end of file +export const proxy_in_arrow = (object) => $state(object);