Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
paoloricciuti committed Jun 2, 2024
1 parent f1f11cc commit 696a51b
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -298,10 +298,7 @@ export function serialize_set_binding(node, context, fallback, options) {
/**@type {import("estree").Expression}*/ (binding.initial),
context.state.scope
);
if (
(binding.kind === 'prop' || binding.kind === 'bindable_prop') &&
!is_initial_proxy
) {
if ((binding.kind === 'prop' || binding.kind === 'bindable_prop') && !is_initial_proxy) {
return b.call(left, value);
} else if (is_store) {
return b.call('$.store_set', serialize_get_binding(b.id(left_name), state), value);
Expand Down

0 comments on commit 696a51b

Please sign in to comment.