You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
channel: body.channel.id,// Send it in the same channel
148
+
user: body.user.id,// Send it to the user who made the selection
149
+
text: `✅ You added the incident succesfully with the following category: ${selectedCategory}. You can change the incidents category by using the dropdown again.`,// Message with checkmark
150
+
});
146
151
}catch(error){
147
-
say("There was an error adding the incident. Please try again later.");
148
-
console.error("Error adding incident:",error);
152
+
awaitclient.chat.postEphemeral({
153
+
channel: body.channel.id,// Send it in the same channel
154
+
user: body.user.id,// Send it to the user who made the selection
155
+
text: "❌ There was an error adding the incident. Please try again later.",
0 commit comments