Skip to content

Commit

Permalink
Merge branch 'hotfix/0.2.11' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed Aug 14, 2024
2 parents 934ed8d + a1f5e05 commit a9590d8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "decent-interface",
"version": "0.2.10",
"version": "0.2.11",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.10",
Expand Down
12 changes: 6 additions & 6 deletions src/components/ui/page/Navigation/NavigationLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import {
Coins,
SquaresFour,
Question,
DiscordLogo,
ArrowSquareOut,
BookOpen,
UsersThree,
} from '@phosphor-icons/react';
import { DAO_ROUTES } from '../../../../constants/routes';
import { URL_FAQ, URL_DISCORD, URL_DOCS } from '../../../../constants/url';
import { URL_FAQ, URL_CHAT, URL_DOCS } from '../../../../constants/url';
import { useFractal } from '../../../../providers/App/AppProvider';
import { useNetworkConfig } from '../../../../providers/NetworkConfig/NetworkConfigProvider';
import Divider from '../../utils/Divider';
Expand Down Expand Up @@ -41,10 +41,10 @@ function ExternalLinks({ closeDrawer }: { closeDrawer?: () => void }) {
closeDrawer={closeDrawer}
/>
<NavigationLink
href={URL_DISCORD}
labelKey="discord"
testId="navigationExternal-discord"
NavigationIcon={DiscordLogo}
href={URL_CHAT}
labelKey="chat"
testId="navigationExternal-chat"
NavigationIcon={ArrowSquareOut}
scope="external"
closeDrawer={closeDrawer}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/constants/url.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const URL_FAQ = 'https://docs.decentdao.org/app/learn-more/faq';
export const URL_DISCORD = 'https://chat.decentdao.org/';
export const URL_CHAT = 'https://warpcast.com/~/channel/decentdao';
export const URL_DOCS = 'https://docs.decentdao.org/app';
export const URL_DOCS_GOV_TYPES = 'https://docs.decentdao.org/app/user-guide/types';
export const URL_DECENT = 'https://www.decentdao.org/';
2 changes: 1 addition & 1 deletion src/i18n/locales/en/navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"treasury": "Treasury",
"proposalTemplates": "Templates",
"faq": "FAQ",
"discord": "Discord",
"chat": "Warpcast",
"documentation": "Documentation",
"ariaLabelFractalBrand": "Navigate Decent Home"
}

0 comments on commit a9590d8

Please sign in to comment.