From ce7845365c3dec4926f19104bfea997409446295 Mon Sep 17 00:00:00 2001 From: Shaun Hamilton Date: Wed, 16 Apr 2025 17:27:12 +0200 Subject: [PATCH] chore(client): adjust backend placeholder with localhost (#59765) --- client/src/templates/Challenges/projects/solution-form.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/templates/Challenges/projects/solution-form.tsx b/client/src/templates/Challenges/projects/solution-form.tsx index 805ccceb297..20b326ffd8b 100644 --- a/client/src/templates/Challenges/projects/solution-form.tsx +++ b/client/src/templates/Challenges/projects/solution-form.tsx @@ -81,7 +81,7 @@ export class SolutionForm extends Component { case challengeTypes.backend: formFields = solutionField; options.isLocalLinkAllowed = true; - solutionLink = solutionLink + 'https://3000-project-url.gitpod.io/'; + solutionLink = solutionLink + 'http://localhost:3000/'; break; case challengeTypes.backEndProject: @@ -89,7 +89,7 @@ export class SolutionForm extends Component { // options.required.push('githubLink'); options.isSourceCodeLinkRequired = true; options.isLocalLinkAllowed = true; - solutionLink = solutionLink + 'https://3000-project-url.gitpod.io/'; + solutionLink = solutionLink + 'http://localhost:3000/'; solutionFormID = 'back-end-form'; break;