From a66758ef410d3e3ae177d0060fea366da776c36f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francis=20G=C3=B3mez?= <96137247+fagomezra@users.noreply.github.com> Date: Tue, 19 Sep 2023 09:36:06 -0500 Subject: [PATCH] perf(webapp): update home texts for not logged users (#114) Co-authored-by: Leister Francisco Alvarez Campos Co-authored-by: Xavier Fernandez <5632966+xavier506@users.noreply.github.com> --- .../registration-election-components/participation-card.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/webapp/src/elections/components/registration-election-components/participation-card.tsx b/packages/webapp/src/elections/components/registration-election-components/participation-card.tsx index f271e8d84..27917789f 100644 --- a/packages/webapp/src/elections/components/registration-election-components/participation-card.tsx +++ b/packages/webapp/src/elections/components/registration-election-components/participation-card.tsx @@ -109,7 +109,8 @@ export const ParticipationCard = ({ election }: Props) => { let statusButton = null; if (!ualAccount) { - participationCallLabel = "Sign in to participate."; + participationActionLabel = "I want to participate"; + participationCallLabel = `Sign in to participate. You must choose "${participationActionLabel}" by ${electionParticipationLimitTime} to vote in the election.`; statusButton = ( );