From db9f4694265542c0761e27aa86c526b7579ef0f7 Mon Sep 17 00:00:00 2001 From: David Gorelik Date: Sun, 16 Jun 2024 14:00:11 -0500 Subject: [PATCH] prevent directory import error --- src/lib/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/index.ts b/src/lib/index.ts index 21c4766..dcc1f78 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -2,7 +2,7 @@ //@ts-ignore import type { ComputePositionConfig, ComputePositionReturn, FloatingElement, Middleware, Padding, ReferenceElement, VirtualElement } from "./core/index.js"; //@ts-ignore -import { arrow as arrowCore } from "./core"; +import { arrow as arrowCore } from "./core/index.js"; import { autoUpdate as _autoUpdate, computePosition, type AutoUpdateOptions, type MiddlewareState } from "./dom/index.js"; import type { Readable, Writable } from "svelte/store"; import { get } from "svelte/store";