image cards should be /image, not /paint

This commit is contained in:
sabaimran 2024-08-03 13:44:31 +05:30
parent 261f62e353
commit 0db630a123

View file

@ -144,7 +144,7 @@ function ChatBodyData(props: ChatBodyDataProps) {
if (type === "Online Search") {
message_str = "/online " + prompt;
} else if (type === "Paint") {
message_str = "/paint " + prompt;
message_str = "/image " + prompt;
} else {
message_str = prompt;
}