Skip to content

Commit de65e1c

Browse files
committed
chore: fix lint
1 parent 184882c commit de65e1c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/svelte/src/compiler/phases/3-transform/client/transform-client.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,7 @@ export function client_component(analysis, options) {
277277
}
278278

279279
if (binding?.kind === 'prop' || binding?.kind === 'bindable_prop') {
280-
return [
281-
getter,
282-
b.set(alias ?? name, [b.stmt(b.call(name, b.id('$$value')))])
283-
];
280+
return [getter, b.set(alias ?? name, [b.stmt(b.call(name, b.id('$$value')))])];
284281
}
285282

286283
if (binding?.kind === 'state' || binding?.kind === 'raw_state') {

0 commit comments

Comments
 (0)