From 7ecfca50f63d56004ff53494bb914607e0feed3e Mon Sep 17 00:00:00 2001 From: Rami Bitar Date: Sun, 3 May 2026 16:30:11 -0400 Subject: [PATCH] fix css import --- components/AppClient.tsx | 2 +- components/EditorClient.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/AppClient.tsx b/components/AppClient.tsx index 81b263a..ac64143 100644 --- a/components/AppClient.tsx +++ b/components/AppClient.tsx @@ -9,7 +9,7 @@ import { import createTailwindCdnPlugin from "@reacteditor/plugin-tailwind-cdn"; import { aiPlugin } from "@reacteditor/plugin-ai"; import "@reacteditor/core/dist/index.css"; -import "@/editor/vendor/plugin-ai.css"; +import "@reacteditor/plugin-ai/styles.css"; import { createConfig } from "@/editor/config"; import { ShopifyProvider } from "@/editor/contexts/shopify-context"; diff --git a/components/EditorClient.tsx b/components/EditorClient.tsx index a36af68..da667a9 100644 --- a/components/EditorClient.tsx +++ b/components/EditorClient.tsx @@ -12,7 +12,7 @@ import { import createTailwindCdnPlugin from "@reacteditor/plugin-tailwind-cdn"; import { aiPlugin } from "@reacteditor/plugin-ai"; import "@reacteditor/core/dist/index.css"; -import "@/editor/vendor/plugin-ai.css"; +import "@reacteditor/plugin-ai/styles.css"; import { createConfig } from "@/editor/config"; import { ShopifyProvider } from "@/editor/contexts/shopify-context"; import { Button } from "@/editor/components/ui/button";