feat(settings): show Slack workspace connection status#2200
Merged
Conversation
Contributor
Prompt To Fix All With AIFix the following 1 code review issue. Work through them one at a time, proposing concise fixes.
---
### Issue 1 of 1
apps/code/src/renderer/features/settings/components/sections/SlackSettings.tsx:93-97
The `typeof ... === "number"` branch in `createdAt` accepts a raw number, but `formatRelativeTimeLong` treats any number as Unix **milliseconds** — `new Date(seconds)` would produce a date in early 1970. PostHog APIs consistently return ISO strings for `created_at`, so this branch is probably dead code. If it can ever be reached, the caller needs to convert seconds → ms first. Narrowing the guard to `string` only matches the actual API contract and avoids a silent wrong-date bug if a numeric value ever surfaces.
```suggestion
const createdAt =
typeof integration.created_at === "string"
? integration.created_at
: null;
```
Reviews (1): Last reviewed commit: "feat(settings): show Slack workspace con..." | Re-trigger Greptile |
k11kirky
approved these changes
May 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The Slack settings panel only showed a "Manage in PostHog" button — there was no way to see at a glance whether a Slack workspace was already connected to the project, or which workspace it was.
Changes
slackIntegrations/hasSlackIntegrationselectors tointegrationStore(mirrors the existing GitHub selectors).SlackSettingsnow renders connection state above the manage button:manageButton/manageButtonWithTooltipfor clarity.Before
(no indication if we've connected or not)
After
(with connection)

(with no connection)

How did you test this?
pnpm typecheck(ran via lint-staged on commit).Publish to changelog?
no