diff --git a/packages/react/src/reconciler/host-config.ts b/packages/react/src/reconciler/host-config.ts index 309ebabd1..e762a5847 100644 --- a/packages/react/src/reconciler/host-config.ts +++ b/packages/react/src/reconciler/host-config.ts @@ -2,7 +2,7 @@ import { TextNodeRenderable, TextRenderable, type Renderable } from "@opentui/co import pkgJson from "../../package.json" import { createContext } from "react" import type { HostConfig, ReactContext } from "react-reconciler" -import { DefaultEventPriority, NoEventPriority } from "react-reconciler/constants" +import { DefaultEventPriority, NoEventPriority } from "react-reconciler/constants.js" import { getComponentCatalogue } from "../components" import { textNodeKeys, type TextNodeKey } from "../components/text" import type { Container, HostContext, Instance, Props, PublicInstance, TextInstance, Type } from "../types/host" diff --git a/packages/react/src/reconciler/reconciler.ts b/packages/react/src/reconciler/reconciler.ts index 86418e167..90352db7b 100644 --- a/packages/react/src/reconciler/reconciler.ts +++ b/packages/react/src/reconciler/reconciler.ts @@ -1,7 +1,7 @@ import type { RootRenderable } from "@opentui/core" import React from "react" import ReactReconciler from "react-reconciler" -import { ConcurrentRoot } from "react-reconciler/constants" +import { ConcurrentRoot } from "react-reconciler/constants.js" import { hostConfig } from "./host-config" export const reconciler = ReactReconciler(hostConfig)