Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DS-1060: Ensure all links go to dev Netlify sites. #468

Merged
merged 3 commits into from
Jan 11, 2025
Merged
Changes from 1 commit
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
5 changes: 4 additions & 1 deletion src/pages/citizenship.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import CenteredContainer from '../components/partials/centeredContainer';
import SbLink from '../components/partials/sbLink';

const ForeignSourceReporting = ({ data }) => {
const isProduction = process.env.CONTEXT === 'production';
const oodLocalHeader = {
...data?.header,
content: JSON.parse(data?.header.content),
Expand Down Expand Up @@ -56,7 +57,9 @@ const ForeignSourceReporting = ({ data }) => {
<SbLink
linkType="url"
link={{
url: 'https://giving.stanford.edu/gift-policies/',
url: isProduction
? 'https://giving.stanford.edu/gift-policies/'
: 'https://dev--adapt-giving.netlify.app/gift-policies/',
}}
>
Stanford’s Gift Policy
Expand Down
Loading