diff --git a/src/robusta/integrations/slack/sender.py b/src/robusta/integrations/slack/sender.py index ad757cb3c..2fab758f3 100644 --- a/src/robusta/integrations/slack/sender.py +++ b/src/robusta/integrations/slack/sender.py @@ -643,11 +643,11 @@ def send_holmes_analysis( def get_holmes_block(self, platform_enabled: bool, slackbot_enabled) -> Optional[MarkdownBlock]: if not platform_enabled and not slackbot_enabled: - return MarkdownBlock("_Ask AI questions about this alert, by connecting and tagging @holmes._") + return MarkdownBlock("_Ask AI questions about this alert, by connecting and tagging holmes._") elif platform_enabled and not slackbot_enabled: - return MarkdownBlock("_Ask AI questions about this alert, by adding @holmes to your ._") + return MarkdownBlock("_Ask AI questions about this alert, by adding holmes to your ._") elif platform_enabled and slackbot_enabled: - return MarkdownBlock("_Ask AI questions about this alert, by tagging @holmes in a threaded reply_") + return MarkdownBlock("_Ask AI questions about this alert, by tagging holmes in a threaded reply_") return None