aboutsummaryrefslogtreecommitdiff
path: root/src/components/chatbubble.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/chatbubble.jsx')
-rw-r--r--src/components/chatbubble.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/chatbubble.jsx b/src/components/chatbubble.jsx
index 01dc6e5..a9c0c85 100644
--- a/src/components/chatbubble.jsx
+++ b/src/components/chatbubble.jsx
@@ -53,7 +53,7 @@ export default function ChatBubble({ id, position, text }) {
}
}
if(keysPressed.current.includes('KeyR') && activatable) {
- const newMesssage = prompt();
+ const newMesssage = prompt("edit message");
if(newMesssage) {
let data = new FormData();
data.append("token", apiToken.current);