fix(client): add relevant placeholder to link submission (#38411)

This commit is contained in:
Shaun Hamilton
2020-05-07 17:19:06 +01:00
committed by GitHub
parent 65416fd351
commit 21ca4e3f67
5 changed files with 50 additions and 74 deletions

View File

@@ -18,7 +18,7 @@ import {
challengeTestsSelector,
closeModal,
challengeFilesSelector,
updateProjectFormValues
updateSolutionFormValues
} from './';
import {
userSelector,
@@ -92,7 +92,7 @@ function submitProject(type, state) {
payload: challengeInfo
};
return postChallenge(update, username).pipe(
concat(of(updateProjectFormValues({})))
concat(of(updateSolutionFormValues({})))
);
}