chore(client): adjust backend placeholder with localhost (#59765)

This commit is contained in:
Shaun Hamilton 2025-04-16 17:27:12 +02:00 committed by GitHub
parent 2541f93fb9
commit ce7845365c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -81,7 +81,7 @@ export class SolutionForm extends Component<SolutionFormProps> {
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<SolutionFormProps> {
// 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;