in src/app/redux/config-fix.js [3:13]
function fixConfigProject(config) {
const {project} = config;
if (project && project.path) {
const newProjectPath = project.path.replace(/\b:\b/g, ' :: ');
if (newProjectPath !== project.path) {
project.path = newProjectPath;
return true;
}
}
return false;
}