diff --git a/CHANGELOG.md b/CHANGELOG.md index b0f2fc1ab..c39964050 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- GUI: Set new Discord invite link to non-expired one + ## [1.0.0-rc.4] - 2024-11-17 - GUI: Fix an issue where the AppImage would render a blank screen on some Linux systems diff --git a/src-gui/src/renderer/components/pages/help/ContactInfoBox.tsx b/src-gui/src/renderer/components/pages/help/ContactInfoBox.tsx index 4b151081d..e9e41181b 100644 --- a/src-gui/src/renderer/components/pages/help/ContactInfoBox.tsx +++ b/src-gui/src/renderer/components/pages/help/ContactInfoBox.tsx @@ -12,7 +12,7 @@ const useStyles = makeStyles((theme) => ({ const GITHUB_ISSUE_URL = "https://github.com/UnstoppableSwap/unstoppableswap-gui/issues/new/choose"; const MATRIX_ROOM_URL = "https://matrix.to/#/#unstoppableswap:matrix.org"; -export const DISCORD_URL = "https://discord.gg/APJ6rJmq"; +export const DISCORD_URL = "https://discord.gg/aqSyyJ35UW"; export default function ContactInfoBox() { const classes = useStyles();