Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const Disclaimer = () => (
will only use the data you provide us for the purpose of the feature and
we will delete any personal data when we no longer require it for this
purpose. For true anonymity please use our{' '}
<a href="https://www.theguardian.com/securedrop">SecureDrop</a> service
<a href="https://www.theguardian.com/tips">Secure Messaging</a> service
instead.
</div>
);
Expand Down
6 changes: 3 additions & 3 deletions apps-rendering/src/components/Callout/calloutContact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ const Disclaimer = ({ contacts }: { contacts: Contact[] }) => {
</span>
);

const secureDropText = (
const secureMessagingText = (
<span css={[info, calloutLinkContainer]}>
For true anonymity please use our{' '}
<a href="https://www.theguardian.com/securedrop">SecureDrop</a>{' '}
<a href="https://www.theguardian.com/tips">Secure Messaging</a>{' '}
service instead.
</span>
);
Expand All @@ -88,7 +88,7 @@ const Disclaimer = ({ contacts }: { contacts: Contact[] }) => {
<>
{contactText}
{contacts.some((c) => !!c.guidance) && guidanceText}{' '}
{secureDropText}
{secureMessagingText}
</>
);
};
Expand Down
4 changes: 2 additions & 2 deletions dotcom-rendering/src/components/Callout/CalloutComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ export const CalloutTermsAndConditions = () => (
purpose. For true anonymity please use our{' '}
<a
data-ignore="global-link-styling"
href="https://www.theguardian.com/securedrop"
href="https://www.theguardian.com/tips"
>
SecureDrop
Secure Messaging
</a>{' '}
service instead.
</div>
Expand Down
6 changes: 3 additions & 3 deletions dotcom-rendering/src/components/Callout/MessageUs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ const Disclaimer = ({ contacts }: { contacts: CalloutContactType[] }) => {
</span>
);

const secureDropText = (
const secureMessagingText = (
<span>
For true anonymity please use our{' '}
<a href="https://www.theguardian.com/securedrop">SecureDrop</a>{' '}
<a href="https://www.theguardian.com/tips">Secure Messaging</a>{' '}
service instead.
</span>
);
Expand All @@ -107,7 +107,7 @@ const Disclaimer = ({ contacts }: { contacts: CalloutContactType[] }) => {
{contactText}
<p css={[linkStyles, infoStyles]}>
{contacts.some((c) => !!c.guidance) && guidanceText}{' '}
{secureDropText}
{secureMessagingText}
</p>
</>
);
Expand Down
Loading