Skip to content

Commit

Permalink
Fix a process.env reference I missed previously
Browse files Browse the repository at this point in the history
  • Loading branch information
henrycatalinismith committed Dec 27, 2024
1 parent 6f21047 commit d8fad76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/surveys/components/surveyForm/SurveyFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const SurveyFooter: FC = () => {
: messages.surveyForm.policy.link(),
text: messages.surveyFooter.links.privacy(),
},
...(typeof process.env.INSTANCE_OWNER_NAME === 'string' &&
typeof process.env.INSTANCE_OWNER_HREF === 'string'
...(typeof env.vars.INSTANCE_OWNER_NAME === 'string' &&
typeof env.vars.INSTANCE_OWNER_HREF === 'string'
? [
{
href: env.vars.INSTANCE_OWNER_HREF as string,
Expand Down

0 comments on commit d8fad76

Please sign in to comment.