diff --git a/.github/workflows/docker_cleanup.yml b/.github/workflows/docker_cleanup.yml
index 667c5cf..adade49 100644
--- a/.github/workflows/docker_cleanup.yml
+++ b/.github/workflows/docker_cleanup.yml
@@ -16,7 +16,7 @@ jobs:
with:
# NOTE: at now only orgs is supported
owner: airtai
- name: rba-wasp
+ name: test-chat-app
token: ${{ secrets.GITHUB_TOKEN }}
# Keep latest N untagged images
diff --git a/main.wasp b/main.wasp
index a569bef..564cf63 100644
--- a/main.wasp
+++ b/main.wasp
@@ -2,16 +2,16 @@ app chatApp {
wasp: {
version: "^0.11.7"
},
- title: "RBA Demo",
+ title: "Capt'n.ai",
head: [
"",
"",
- "",
- "",
+ "",
+ "",
"",
+ "",
+ "",
// you can put your google analytics script here, too!
- // "",
- // "",
],
// 🔐 Auth out of the box! https://wasp-lang.dev/docs/auth/overview
auth: {
diff --git a/src/client/AccountPage.tsx b/src/client/AccountPage.tsx
index a37f12d..e8b7c5d 100644
--- a/src/client/AccountPage.tsx
+++ b/src/client/AccountPage.tsx
@@ -59,7 +59,7 @@ export default function Example({ user }: { user: User }) {
diff --git a/src/client/App.tsx b/src/client/App.tsx
index 0b87920..2c829e0 100644
--- a/src/client/App.tsx
+++ b/src/client/App.tsx
@@ -9,7 +9,7 @@ export default function App({ children }: { children: ReactNode }) {
* in this case the NavBar will always be rendered
*/
return (
-
+
{children}
diff --git a/src/client/ChatPage.jsx b/src/client/ChatPage.jsx
index e9647ef..f3d077f 100644
--- a/src/client/ChatPage.jsx
+++ b/src/client/ChatPage.jsx
@@ -8,7 +8,7 @@ import { useState, useEffect, useRef } from 'react';
import { Link } from '@wasp/router'
import Markdown from 'react-markdown'
-import logo from './static/rba-logo.png'
+import logo from './static/captn-logo.png'
import createChat from '@wasp/actions/createChat'
import updateConversation from '@wasp/actions/updateConversation'
import getAgentResponse from '@wasp/actions/getAgentResponse'
@@ -24,7 +24,7 @@ const ChatsList = ({ chats }) => {
to="/chat/:id?"
params={{ id: chat.id }}>