diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2024-01-30 20:18:47 +0000 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2024-01-30 20:18:47 +0000 |
commit | 97a393fa1c9a342183ceaede9cd07564816bacce (patch) | |
tree | 09be60bac826ab1973f6577daf22befb694ea9fa /src/client-runtime.ffi.mjs | |
parent | dcad7a49d0fa9d17f5e8c8e7677548be2967f364 (diff) | |
download | lustre-97a393fa1c9a342183ceaede9cd07564816bacce.tar.gz lustre-97a393fa1c9a342183ceaede9cd07564816bacce.zip |
:bug: Fixed bug where ffi code incorrectly imported runtime.
Diffstat (limited to 'src/client-runtime.ffi.mjs')
-rw-r--r-- | src/client-runtime.ffi.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client-runtime.ffi.mjs b/src/client-runtime.ffi.mjs index bb3bf9d..12c8627 100644 --- a/src/client-runtime.ffi.mjs +++ b/src/client-runtime.ffi.mjs @@ -1,5 +1,5 @@ import { ElementNotFound, NotABrowser } from "./lustre.mjs"; -import { Dispatch, Shutdown } from "./lustre/runtime.mjs"; +import { Dispatch, Shutdown } from "./lustre/internals/runtime.mjs"; import { morph } from "./vdom.ffi.mjs"; import { Ok, Error, isEqual } from "./gleam.mjs"; |