mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-30 19:03:01 +01:00
image cards should be /image, not /paint
This commit is contained in:
parent
261f62e353
commit
0db630a123
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ function ChatBodyData(props: ChatBodyDataProps) {
|
||||||
if (type === "Online Search") {
|
if (type === "Online Search") {
|
||||||
message_str = "/online " + prompt;
|
message_str = "/online " + prompt;
|
||||||
} else if (type === "Paint") {
|
} else if (type === "Paint") {
|
||||||
message_str = "/paint " + prompt;
|
message_str = "/image " + prompt;
|
||||||
} else {
|
} else {
|
||||||
message_str = prompt;
|
message_str = prompt;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue