From 539491b94696d57c894ba8c35069a6ff3420f9aa Mon Sep 17 00:00:00 2001
From: ajmcquilkin <46639306+ajmcquilkin@users.noreply.github.com>
Date: Sat, 25 Jan 2025 12:08:45 -0800
Subject: [PATCH 1/2] Moved tooltip to top
---
app/page.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/page.tsx b/app/page.tsx
index 59894ce..fb9f1e4 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -10,10 +10,10 @@ import posthog from "posthog-js";
const Tooltip = ({ children, text }: { children: React.ReactNode; text: string }) => {
return (
- {children}
-
+
{text}
+ {children}
);
};
From 966b0a7f84898f25ead0ec13961be00cd5897b0f Mon Sep 17 00:00:00 2001
From: ajmcquilkin <46639306+ajmcquilkin@users.noreply.github.com>
Date: Mon, 27 Jan 2025 08:39:02 -0800
Subject: [PATCH 2/2] Missed one
---
app/components/ChatFeed.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/components/ChatFeed.tsx b/app/components/ChatFeed.tsx
index 6f9c812..bd6441d 100644
--- a/app/components/ChatFeed.tsx
+++ b/app/components/ChatFeed.tsx
@@ -284,7 +284,7 @@ export default function ChatFeed({ initialMessage, onClose }: ChatFeedProps) {
width={32}
height={32}
/>
- Open Operator
+ Open Operator