Skip to content

Commit 4ffeb39

Browse files
fix: update the telegram link in the setup team card
1 parent 0dec1e0 commit 4ffeb39

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

public/locales/en/common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
"communities.overview.challenge.subtitle": "Upon successful completion",
119119
"communities.overview.challenge.expiry": "Challenge expiry date:",
120120
"communities.overview.challenge.learning.title": "The following learning materials will equip you with the technical expertise required to successfully address the challenge.",
121-
"communities.overview.challenge.learning.start": "start now",
121+
"communities.overview.challenge.learning.start": "Start now",
122122
"communities.overview.challenge.team.setup.title": "Form your team",
123123
"communities.overview.challenge.team.setup.description": "Select from 1 to 3 members to join you in the challenge.",
124124
"communities.overview.challenge.team.setup.info": "To complete the team challenge, you need to follow these steps:",

public/locales/es/common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"communities.overview.challenge.subtitle": "Al completar con éxito",
118118
"communities.overview.challenge.expiry": "Fecha de vencimiento del desafío:",
119119
"communities.overview.challenge.learning.title": "Los siguientes materiales de aprendizaje le proporcionarán la experiencia técnica necesaria para abordar con éxito el desafío.",
120-
"communities.overview.challenge.learning.start": "comenzar ahora",
120+
"communities.overview.challenge.learning.start": "Comenzar ahora",
121121
"communities.overview.challenge.team.setup.title": "Forma tu equipo",
122122
"communities.overview.challenge.team.setup.description": "Selecciona de 1 a 3 miembros para que se unan a ti en el desafío.",
123123
"communities.overview.challenge.team.setup.info": "Para completar el desafío en equipo, debes seguir estos pasos:",

public/locales/hr/common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
"communities.overview.challenge.certificate": "Certificate",
166166
"communities.overview.challenge.expiry": "Datum isteka izazova:",
167167
"communities.overview.challenge.learning.title": "Sljedeći materijali za učenje opskrbit će vas tehničkim stručnostima potrebnim za uspješno rješavanje izazova.",
168-
"communities.overview.challenge.learning.start": "počnite sada",
168+
"communities.overview.challenge.learning.start": "Počnite sada",
169169
"communities.overview.challenge.team.setup.title": "Sastavite svoj tim",
170170
"communities.overview.challenge.team.setup.description": "Odaberite između 1 do 3 člana koji će vam se pridružiti u izazovu.",
171171
"communities.overview.challenge.team.setup.info": "Da biste završili timski izazov, trebate slijediti ove korake:",

src/components/cards/challenge/_partials/FormTeam.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function FormTeamCard({ index = 1, title, description }: FormTeam
2828
</div>
2929
<div className="text-sm font-normal text-gray-700 mt-3 max-w-xxs pb-6">{description}</div>
3030
</div>
31-
<Link href="https://discord.gg/gBQghCPeV7" target="_blank">
31+
<Link href="https://t.me/+0oJye8IwAuxkMDY0" target="_blank">
3232
<ArrowButton communityStyles={true} variant="outline-primary">
3333
Start now
3434
</ArrowButton>

src/components/sections/challenges/SetupTeamChallenge.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default function SetupTeamChallenge(): JSX.Element {
2626
<Section title="Submission">
2727
<div className="text-base font-normal text-slate-700 pt-8 pb-7 md:w-182.5">{t("communities.overview.challenge.team.setup.info")}</div>
2828
<div className="md:flex flex-row gap-5">
29-
<FormTeamCard index={1} title="Form your team" description="Open discord channel #icp-ai-web3-hachathon and find your teammates to complete the challenge with you." />
29+
<FormTeamCard index={1} title="Form your team" description="Join DeArk - ICP.Hub Germany telegram group and find your teammates to complete the challenge with you." />
3030
{invite && !invite.team?.locked ? (
3131
<ConfirmTeamInvitation index={2} title="Submit your team" text={`The maximum team members for this challenge is ${challenge?.teamLimit || "3"} people`} invite={invite} />
3232
) : (

src/pages/communities/[slug]/challenges/[challenge_id]/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export default function ChallengePage() {
129129
<Header />
130130
<Rewards />
131131
<Objectives />
132-
<TeamChallenge />
132+
{challenge?.isTeamChallenge && <TeamChallenge />}
133133

134134
<Learning courses={challenge.courses} learningModules={challenge.learningModules} community={community} />
135135
<RatingRubric ratingCriteria={challenge?.ratingCriteria} selected={[]} />

0 commit comments

Comments
 (0)