Skip to content

Commit

Permalink
chore: move community links to slack (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbdias authored Jan 2, 2024
1 parent 6bc8eb1 commit 07e50db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions web/src/components/Header/HeaderMenu.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DOCUMENTATION_URL, GITHUB_URL, DISCORD_URL } from '../../constants/common';
import { DOCUMENTATION_URL, GITHUB_URL, COMMUNITY_SLACK_URL } from '../../constants/common';
import * as S from './Header.styled';

interface IProps {
Expand Down Expand Up @@ -27,10 +27,10 @@ export const HeaderMenu = ({ pathname }: IProps) => {
),
},
{
key: 'discord',
key: 'slack',
label: (
<a href={DISCORD_URL} target="_blank" data-cy="discord-link">
Discord
<a href={COMMUNITY_SLACK_URL} target="_blank" data-cy="slack-link">
Slack
</a>
),
},
Expand Down
2 changes: 1 addition & 1 deletion web/src/constants/common.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const DOCUMENTATION_URL = 'https://docs.tracetest.io';
export const GITHUB_URL = 'https://github.com/kubeshop/tracetest';
export const GITHUB_ISSUES_URL = 'https://github.com/kubeshop/tracetest/issues/new/choose';
export const DISCORD_URL = 'https://discord.gg/6zupCZFQbe';
export const COMMUNITY_SLACK_URL = 'https://dub.sh/tracetest-community';

0 comments on commit 07e50db

Please sign in to comment.