Skip to content

Commit 4b16078

Browse files
authored
chore: fix non-relative import (#12419)
1 parent 36a6a6b commit 4b16078

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/svelte/src/legacy/legacy-client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/** @import { ComponentConstructorOptions, ComponentType, SvelteComponent, Component } from 'svelte' */
2-
import { mutable_source, get, set } from 'svelte/internal/client';
2+
import { mutable_source, set } from '../internal/client/reactivity/sources.js';
33
import { user_pre_effect } from '../internal/client/reactivity/effects.js';
44
import { hydrate, mount, unmount } from '../internal/client/render.js';
5+
import { get } from '../internal/client/runtime.js';
56
import { define_property } from '../internal/client/utils.js';
6-
import { safe_not_equal } from '../internal/client/reactivity/equality.js';
77

88
/**
99
* Takes the same options as a Svelte 4 component and the component function and returns a Svelte 4 compatible component.

0 commit comments

Comments
 (0)