aboutsummaryrefslogtreecommitdiff
path: root/src/client-runtime.ffi.mjs
diff options
context:
space:
mode:
authorHayleigh Thompson <me@hayleigh.dev>2024-01-30 20:18:47 +0000
committerHayleigh Thompson <me@hayleigh.dev>2024-01-30 20:18:47 +0000
commit97a393fa1c9a342183ceaede9cd07564816bacce (patch)
tree09be60bac826ab1973f6577daf22befb694ea9fa /src/client-runtime.ffi.mjs
parentdcad7a49d0fa9d17f5e8c8e7677548be2967f364 (diff)
downloadlustre-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.mjs2
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";