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;