Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Shalev authored and Amit Shalev committed Aug 16, 2023
1 parent 3b1cba4 commit 76cb2ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/atoms/MetaTag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { makeStyles } from '@material-ui/core';

const useStyles = makeStyles({
root: {
display: import.meta.env.SHOW_META_TAGS === 'true' ? 'block' : 'none',
display: import.meta.env.VITE_SHOW_META_TAGS === 'true' ? 'block' : 'none',
position: 'absolute',
top: 0,
left: 0,
Expand Down
2 changes: 1 addition & 1 deletion src/components/organisms/ThankYouDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface IProps {

async function getNames(): Promise<string[]> {
return new Promise((resolve, reject) => {
return Papa.parse(import.meta.env.THANKYOU_NAMES_FILE || defaultNamesFile, {
return Papa.parse(import.meta.env.VITE_THANKYOU_NAMES_FILE || defaultNamesFile, {
download: true,
encoding: 'utf-8-sig',
header: true,
Expand Down

0 comments on commit 76cb2ca

Please sign in to comment.