Clear body on success

This commit is contained in:
Sumire Isshiki 2024-03-05 09:56:40 +09:00
parent 12da318a24
commit 15be8f8fdd

View File

@ -48,6 +48,9 @@ export default function Chat() {
async (text) => {
if (text.includes("Success")) {
await showAlert("送信しました。");
setBody("");
} else {
await showAlert("送信するときになんらかの問題が発生しました。" + text);
}
}
)