diff --git a/components/chatbot/ChatBot.tsx b/components/chatbot/ChatBot.tsx
index 209d8271..86da1e0e 100644
--- a/components/chatbot/ChatBot.tsx
+++ b/components/chatbot/ChatBot.tsx
@@ -119,10 +119,10 @@ export default function Chatbot() {
onClick={() => setIsOpen((prevState) => !prevState)}
>
{isOpen &&
We are offline for today. Please return next time!
diff --git a/components/ui/QRCodeImage.tsx b/components/ui/QRCodeImage.tsx index 79bdd22c..9c625ca6 100644 --- a/components/ui/QRCodeImage.tsx +++ b/components/ui/QRCodeImage.tsx @@ -5,7 +5,7 @@ import { Dialog, DialogContent, DialogTrigger } from "./dialog"; //Change QRURL to the URL where you'll be hosting this app -const QRCodeImage = () => { +const QRCodeImage = ({ textColor="text-black" }: { textColor: string }) => { const url = new URL(window.location.href); const QRURL = url.href; const qrCodeRef = useRef(); @@ -75,17 +75,15 @@ const QRCodeImage = () => { <>