Skip to content

Commit

Permalink
fix: Update message signing link in settings (#2273)
Browse files Browse the repository at this point in the history
  • Loading branch information
usame-algan authored Jul 11, 2023
1 parent f5e7f5d commit 35cb185
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/settings/SafeAppsSigningMethod/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { SETTINGS_EVENTS, trackEvent } from '@/services/analytics'
import { useAppDispatch, useAppSelector } from '@/store'
import { selectOnChainSigning, setOnChainSigning } from '@/store/settingsSlice'
import { FormControlLabel, Checkbox, Paper, Typography, FormGroup, Grid } from '@mui/material'
import { HelpCenterArticle } from '@/config/constants'

export const SafeAppsSigningMethod = () => {
const onChainSigning = useAppSelector(selectOnChainSigning)
Expand All @@ -27,10 +28,7 @@ export const SafeAppsSigningMethod = () => {
<Typography mb={2}>
This setting determines how the {'Safe{Wallet}'} will sign message requests from Safe Apps. Gasless,
off-chain signing is used by default. Learn more about message signing{' '}
<ExternalLink href="https://help.safe.global/en/articles/7021891-what-are-signed-messages">
here
</ExternalLink>
.
<ExternalLink href={HelpCenterArticle.SIGNED_MESSAGES}>here</ExternalLink>.
</Typography>
<FormGroup>
<FormControlLabel
Expand Down

0 comments on commit 35cb185

Please sign in to comment.