Skip to content

Commit e655cd0

Browse files
committed
Recommend SecureMessaging over SecureDrop in callouts
1 parent c4b65a6 commit e655cd0

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

apps-rendering/src/components/Callout/calloutComponents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const Disclaimer = () => (
2222
will only use the data you provide us for the purpose of the feature and
2323
we will delete any personal data when we no longer require it for this
2424
purpose. For true anonymity please use our{' '}
25-
<a href="https://www.theguardian.com/securedrop">SecureDrop</a> service
25+
<a href="https://www.theguardian.com/tips">SecureMessaging</a> service
2626
instead.
2727
</div>
2828
);

apps-rendering/src/components/Callout/calloutContact.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ const Disclaimer = ({ contacts }: { contacts: Contact[] }) => {
7676
</span>
7777
);
7878

79-
const secureDropText = (
79+
const secureMessagingText = (
8080
<span css={[info, calloutLinkContainer]}>
8181
For true anonymity please use our{' '}
82-
<a href="https://www.theguardian.com/securedrop">SecureDrop</a>{' '}
82+
<a href="https://www.theguardian.com/tips">SecureMessaging</a>{' '}
8383
service instead.
8484
</span>
8585
);
@@ -88,7 +88,7 @@ const Disclaimer = ({ contacts }: { contacts: Contact[] }) => {
8888
<>
8989
{contactText}
9090
{contacts.some((c) => !!c.guidance) && guidanceText}{' '}
91-
{secureDropText}
91+
{secureMessagingText}
9292
</>
9393
);
9494
};

dotcom-rendering/src/components/Callout/CalloutComponents.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,9 @@ export const CalloutTermsAndConditions = () => (
219219
purpose. For true anonymity please use our{' '}
220220
<a
221221
data-ignore="global-link-styling"
222-
href="https://www.theguardian.com/securedrop"
222+
href="https://www.theguardian.com/tips"
223223
>
224-
SecureDrop
224+
SecureMessaging
225225
</a>{' '}
226226
service instead.
227227
</div>

dotcom-rendering/src/components/Callout/MessageUs.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ const Disclaimer = ({ contacts }: { contacts: CalloutContactType[] }) => {
9494
</span>
9595
);
9696

97-
const secureDropText = (
97+
const secureMessagingText = (
9898
<span>
9999
For true anonymity please use our{' '}
100-
<a href="https://www.theguardian.com/securedrop">SecureDrop</a>{' '}
100+
<a href="https://www.theguardian.com/tips">SecureMessaging</a>{' '}
101101
service instead.
102102
</span>
103103
);
@@ -107,7 +107,7 @@ const Disclaimer = ({ contacts }: { contacts: CalloutContactType[] }) => {
107107
{contactText}
108108
<p css={[linkStyles, infoStyles]}>
109109
{contacts.some((c) => !!c.guidance) && guidanceText}{' '}
110-
{secureDropText}
110+
{secureMessagingText}
111111
</p>
112112
</>
113113
);

0 commit comments

Comments
 (0)