Skip to content

Commit a5470a2

Browse files
committed
Refactor chat message URLs in Dashboard component
1 parent 03ed98c commit a5470a2

File tree

5 files changed

+595
-98
lines changed

5 files changed

+595
-98
lines changed

frontend/src/app/flow/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ export default function Dashboard() {
761761

762762
const formatChatMessages = () => {
763763
if (chatMessages.length === 0) {
764-
return "No chat messages to show.\n\nHow about you gives us a star on GitHub?\ngithub.com/SilkePilon/OpenDeliveryBot";
764+
return "No chat messages to show.\n\nHow about you gives us a star on GitHub?\ngithub.com/SilkePilon/KnowledgeBook";
765765
}
766766
return chatMessages
767767
.map((msg) => {
@@ -1577,7 +1577,7 @@ export default function Dashboard() {
15771577
<a
15781578
className="underline"
15791579
href={
1580-
"https://github.com/SilkePilon/OpenDeliveryBot/tree/main"
1580+
"https://github.com/SilkePilon/KnowledgeBook/tree/main"
15811581
}
15821582
>
15831583
GitHub

frontend/src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export default function Dashboard() {
220220

221221
const formatChatMessages = () => {
222222
if (chatMessages.length === 0) {
223-
return "No chat messages to show.\n\nHow about you gives us a star on GitHub?\ngithub.com/SilkePilon/OpenDeliveryBot";
223+
return "No chat messages to show.\n\nHow about you gives us a star on GitHub?\ngithub.com/SilkePilon/KnowledgeBook";
224224
}
225225
return chatMessages
226226
.map((msg) => {

frontend/src/app/test/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ export default function Dashboard() {
761761

762762
const formatChatMessages = () => {
763763
if (chatMessages.length === 0) {
764-
return "No chat messages to show.\n\nHow about you gives us a star on GitHub?\ngithub.com/SilkePilon/OpenDeliveryBot";
764+
return "No chat messages to show.\n\nHow about you gives us a star on GitHub?\ngithub.com/SilkePilon/KnowledgeBook";
765765
}
766766
return chatMessages
767767
.map((msg) => {
@@ -1405,7 +1405,7 @@ export default function Dashboard() {
14051405
<a
14061406
className="underline"
14071407
href={
1408-
"https://github.com/SilkePilon/OpenDeliveryBot/tree/main"
1408+
"https://github.com/SilkePilon/KnowledgeBook/tree/main"
14091409
}
14101410
>
14111411
GitHub

0 commit comments

Comments
 (0)