From 75db6a3a3079fbf2eec329e9038d3995a1cb8ad9 Mon Sep 17 00:00:00 2001 From: coffeeorgreentea <90069434+coffeeorgreentea@users.noreply.github.com> Date: Tue, 6 Aug 2024 09:18:15 -0400 Subject: [PATCH] chore: fix broken virtual import --- grimoire/modules/spells/src/runtime/exports.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grimoire/modules/spells/src/runtime/exports.ts b/grimoire/modules/spells/src/runtime/exports.ts index bf98194c6..28670a089 100644 --- a/grimoire/modules/spells/src/runtime/exports.ts +++ b/grimoire/modules/spells/src/runtime/exports.ts @@ -1,5 +1,5 @@ // @ts-ignore -import { handlers as spells } from "#spells-virtual/definitions"; +import { handlers as spells } from "#spells-virtual/spells"; import type { BaseVirtualHandler } from "@gtc-nova/kit/runtime"; import type { Spell } from "../types";