feat: add conditional for new parser beta testing (#496)

This commit is contained in:
Kristin Aoki
2024-07-26 10:59:40 -04:00
committed by GitHub
parent ebab15f046
commit 3dfc579745
4 changed files with 17 additions and 1 deletions

View File

@@ -738,4 +738,13 @@ export class OLXParser {
groupFeedbackList,
};
}
getBetaParsedOLXData() {
/* TODO: Replace olxParser.getParsedOLXData() with new parser function
* and remove console.log()
*/
// eslint-disable-next-line no-console
console.log('Should default to the advanced editor');
return this.getParsedOLXData();
}
}