Skip to content

Commit ce78453

Browse files
chore(client): adjust backend placeholder with localhost (freeCodeCamp#59765)
1 parent 2541f93 commit ce78453

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

client/src/templates/Challenges/projects/solution-form.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ export class SolutionForm extends Component<SolutionFormProps> {
8181
case challengeTypes.backend:
8282
formFields = solutionField;
8383
options.isLocalLinkAllowed = true;
84-
solutionLink = solutionLink + 'https://3000-project-url.gitpod.io/';
84+
solutionLink = solutionLink + 'http://localhost:3000/';
8585
break;
8686

8787
case challengeTypes.backEndProject:
8888
formFields = backEndProjectFields;
8989
// options.required.push('githubLink');
9090
options.isSourceCodeLinkRequired = true;
9191
options.isLocalLinkAllowed = true;
92-
solutionLink = solutionLink + 'https://3000-project-url.gitpod.io/';
92+
solutionLink = solutionLink + 'http://localhost:3000/';
9393
solutionFormID = 'back-end-form';
9494
break;
9595

0 commit comments

Comments
 (0)