Skip to content

Commit

Permalink
feat: use PROCESS_IDS env var in Berga home rather than hardcoding
Browse files Browse the repository at this point in the history
  • Loading branch information
elboletaire committed Feb 11, 2025
1 parent bb77311 commit cff5c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elements/Home/Berga.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Link as ReactRouterLink } from 'react-router-dom'
import VocdoniLogo from '~components/Layout/Logo'
import bergaImg from '/assets/berga/logo.png'

const votingProcessIds: string[] = [];
const votingProcessIds: string[] = import.meta.env.PROCESS_IDS

const Berga = () => (
<Flex flexDirection='column' gap={10} maxW='900px' mx='auto' p={5} minH='100vh'>
Expand Down

1 comment on commit cff5c52

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.