We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2541f93 commit ce78453Copy full SHA for ce78453
1 file changed
client/src/templates/Challenges/projects/solution-form.tsx
@@ -81,15 +81,15 @@ export class SolutionForm extends Component<SolutionFormProps> {
81
case challengeTypes.backend:
82
formFields = solutionField;
83
options.isLocalLinkAllowed = true;
84
- solutionLink = solutionLink + 'https://3000-project-url.gitpod.io/';
+ solutionLink = solutionLink + 'http://localhost:3000/';
85
break;
86
87
case challengeTypes.backEndProject:
88
formFields = backEndProjectFields;
89
// options.required.push('githubLink');
90
options.isSourceCodeLinkRequired = true;
91
92
93
solutionFormID = 'back-end-form';
94
95
0 commit comments