From 117435c338085a5a9366409f127eced7fed63315 Mon Sep 17 00:00:00 2001 From: Michael Matloka Date: Thu, 28 May 2026 13:46:36 +0200 Subject: [PATCH] feat(settings): add inbox Slack notifications to Slack settings view The Slack settings view previously only listed connected workspaces. Inbox notification config was hidden inside the inbox "Configure inbox" dialog, which is hard to discover. Embed the existing self-contained SignalSlackNotificationsSettings component below the workspace list so users can manage inbox notification delivery alongside their workspace connections. Generated-By: PostHog Code Task-Id: 775c509f-8512-4b9f-a1f8-9d2bc0f2eefc --- .../features/settings/components/sections/SlackSettings.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/code/src/renderer/features/settings/components/sections/SlackSettings.tsx b/apps/code/src/renderer/features/settings/components/sections/SlackSettings.tsx index 658595ccf..bd75a0934 100644 --- a/apps/code/src/renderer/features/settings/components/sections/SlackSettings.tsx +++ b/apps/code/src/renderer/features/settings/components/sections/SlackSettings.tsx @@ -9,6 +9,7 @@ import { Box, Button, Flex, Spinner, Text, Tooltip } from "@radix-ui/themes"; import { formatRelativeTimeLong } from "@renderer/utils/time"; import { openUrlInBrowser } from "@utils/browser"; import { getPostHogUrl } from "@utils/urls"; +import { SignalSlackNotificationsSettings } from "./SignalSlackNotificationsSettings"; export function SlackSettings() { const projectId = useAuthStateValue((s) => s.projectId); @@ -77,6 +78,8 @@ export function SlackSettings() { {manageButtonWithTooltip} + + ); }