File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
govtool/frontend/src/components/organisms Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments