Skip to content

Commit cba8d19

Browse files
committed
chore(#2292): change link to support page
1 parent 4c35a51 commit cba8d19

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ changes.
2727

2828
- Bump CSL version to 13.1.0 [Issue 2169](https://github.com/IntersectMBO/govtool/issues/2169)
2929
- Display supporting links below labels than in same row [Issue 2391](https://github.com/IntersectMBO/govtool/issues/2391)
30+
- change link to support page [Issue 2292](https://github.com/IntersectMBO/govtool/issues/2292)
3031

3132
### Removed
3233

govtool/frontend/src/components/organisms/DrawerMobile.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ export const DrawerMobile = ({
2222
const { t } = useTranslation();
2323

2424
const onClickHelp = () =>
25-
openInNewTab("https://docs.gov.tools/support/");
25+
openInNewTab(
26+
"https://docs.gov.tools/using-govtool/support#for-support-you-can-reach-the-team-on-the-intersect-discord-server-at",
27+
);
2628

2729
return (
2830
<SwipeableDrawer

govtool/frontend/src/components/organisms/Footer.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,19 @@ export const Footer = () => {
3535
const { openFeedbackWindow } = useUsersnapApi();
3636

3737
const onClickHelp = () =>
38-
openInNewTab("https://docs.gov.tools/support");
38+
openInNewTab(
39+
"https://docs.gov.tools/using-govtool/support#for-support-you-can-reach-the-team-on-the-intersect-discord-server-at",
40+
);
3941

4042
const onClickPrivacyPolicy = () =>
41-
openInNewTab("https://docs.intersectmbo.org/legal/policies-and-conditions/privacy-policy");
43+
openInNewTab(
44+
"https://docs.intersectmbo.org/legal/policies-and-conditions/privacy-policy",
45+
);
4246

4347
const onClickTermOfService = () =>
44-
openInNewTab("https://docs.intersectmbo.org/legal/policies-and-conditions/terms-of-use");
48+
openInNewTab(
49+
"https://docs.intersectmbo.org/legal/policies-and-conditions/terms-of-use",
50+
);
4551

4652
const onClickFeedback = () => openFeedbackWindow();
4753

0 commit comments

Comments
 (0)