From 1575d09a40bd27964ec155caabe1b56d2c3ad2d4 Mon Sep 17 00:00:00 2001 From: Arno V Date: Mon, 16 Sep 2024 19:19:22 -0400 Subject: [PATCH] fix(Bubble): invalid name for analytics (#650) --- packages/ui-bubble/vite.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui-bubble/vite.config.ts b/packages/ui-bubble/vite.config.ts index 52a6feff..b01b504d 100644 --- a/packages/ui-bubble/vite.config.ts +++ b/packages/ui-bubble/vite.config.ts @@ -1,6 +1,6 @@ import { commonViteConfigForComponent } from "../../configuration/vite.common"; export default commonViteConfigForComponent({ - globalComponentName: "__VERSINI_UI_ANCHOR__", - globalLibraryName: "UIAnchor", + globalComponentName: "__VERSINI_UI_BUBBLE__", + globalLibraryName: "UIBubble", });