diff --git a/packages/interface/.env.example b/packages/interface/.env.example
index 0d26e348..ebf0f47a 100644
--- a/packages/interface/.env.example
+++ b/packages/interface/.env.example
@@ -24,27 +24,18 @@ NEXT_PUBLIC_WALLETCONNECT_ID=
# -----------------
# Event title for the round, just for display
-NEXT_PUBLIC_EVENT_NAME="ETH GLOBAL"
+NEXT_PUBLIC_EVENT_NAME="Add your event name"
-# Unique identifier for your applications and lists - your app will group attestations by this id
-NEXT_PUBLIC_ROUND_ID="open-rpgf-1"
-# Event title for the round, just for display
-NEXT_PUBLIC_ROUND_ORGANIZER="PSE"
+# Event description, just for display
+NEXT_PUBLIC_EVENT_DESCRIPTION="Write a descripion about your community"
# Name of the token you want to allocate (only updates UI)
NEXT_PUBLIC_TOKEN_NAME="Votes"
-# Voting periods
-# Determine when users can register applications, admins review them, voters vote, and results are published
-NEXT_PUBLIC_START_DATE=2024-01-01T00:00:00.000Z
-NEXT_PUBLIC_REGISTRATION_END_DATE=2024-01-01T00:00:00.000Z
-NEXT_PUBLIC_RESULTS_DATE=2024-01-01T00:00:00.000Z
-
# Collect user feedback. Is shown as a link when user has voted
NEXT_PUBLIC_FEEDBACK_URL=https://github.com/privacy-scaling-explorations/maci-platform/issues/new?title=Feedback
# address that will approve applications and voters
-# (leaving empty means anyone can do this)
NEXT_PUBLIC_ADMIN_ADDRESS=
# -----------------
@@ -80,9 +71,6 @@ NEXT_PUBLIC_MACI_START_BLOCK=
NEXT_PUBLIC_MACI_SUBGRAPH_URL=
-# URL with tally-{pollId}.json hosted
-NEXT_PUBLIC_TALLY_URL=https://upblxu2duoxmkobt.public.blob.vercel-storage.com
-
# Whether the poll is in qv or non qv mode
NEXT_PUBLIC_POLL_MODE="non-qv"
diff --git a/packages/interface/src/components/AddedProjects.tsx b/packages/interface/src/components/AddedProjects.tsx
index bb1c2ac8..2be7e346 100644
--- a/packages/interface/src/components/AddedProjects.tsx
+++ b/packages/interface/src/components/AddedProjects.tsx
@@ -1,10 +1,14 @@
import { useBallot } from "~/contexts/Ballot";
import { useProjectCount } from "~/features/projects/hooks/useProjects";
-export const AddedProjects = (): JSX.Element => {
+interface IAddedProjectsProps {
+ roundId: string;
+}
+
+export const AddedProjects = ({ roundId }: IAddedProjectsProps): JSX.Element => {
const { ballot } = useBallot();
const allocations = ballot.votes;
- const { data: projectCount } = useProjectCount();
+ const { data: projectCount } = useProjectCount(roundId);
return (
- {`Thank you for participating in ${config.eventName} ${config.roundId} round.`}
+ {`Thank you for participating in ${config.eventName} ${roundId} round.`}