diff --git a/app/components/ActivityFeed.tsx b/app/components/ActivityFeed.tsx
index e1824e9..f3eda7d 100644
--- a/app/components/ActivityFeed.tsx
+++ b/app/components/ActivityFeed.tsx
@@ -1198,6 +1198,45 @@ export default function ActivityFeed() {
);
}
+ // Show loading state if tracking is enabled but no data yet
+ // This ensures the component is visible on production even while loading
+ if (!data && isTrackingEnabled) {
+ return (
+
+
+
+
+
+
+
+
+
Live Activity
+
Loading...
+
+
+
+
+
+
+
+
+ );
+ }
+
if (!data) return null;
const activeCount = [
diff --git a/app/components/ChatWidget.tsx b/app/components/ChatWidget.tsx
index 2bb3407..8de68a1 100644
--- a/app/components/ChatWidget.tsx
+++ b/app/components/ChatWidget.tsx
@@ -214,7 +214,7 @@ export default function ChatWidget() {
{/* Tooltip */}
-
+
Chat with AI assistant
@@ -240,11 +240,11 @@ export default function ChatWidget() {
-