Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wuls committed Jan 20, 2025
1 parent 2e7d32e commit 08ac62c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/qwik/src/core/client/vnode-diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,6 @@ export const vnode_diff = (
(vNewNode = vnode_newVirtual()),
vCurrent && getInsertBefore()
);

vnode_setProp(vNewNode, QSlot, slotNameKey);
vHost && vnode_setProp(vHost, slotNameKey, vNewNode);
isDev && vnode_setProp(vNewNode, DEBUG_TYPE, VirtualType.Projection);
Expand Down
2 changes: 1 addition & 1 deletion packages/qwik/src/core/shared/component-execution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { logWarn } from './utils/log';
import { EffectProperty, isSignal } from '../signal/signal';
import { vnode_isVNode } from '../client/vnode';
import { clearVNodeEffectDependencies } from '../signal/signal-subscriber';
import { Slot } from '..';
import { Slot } from '../shared/jsx/slot.public';

/**
* Use `executeComponent` to execute a component.
Expand Down

0 comments on commit 08ac62c

Please sign in to comment.