oops, remove some straggler console logs

pull/95/head
dperolio 2 years ago
parent b957ad8afb
commit e836488ae3
No known key found for this signature in database
GPG Key ID: 4191689562D51409

@ -147,7 +147,6 @@ export default class ThemeManager extends AddonManager {
async mount (themeId) {
const manifest = await this._getManifest(themeId);
console.log(manifest);
const errors = this._validateManifest(manifest);
if (errors.length > 0) {
@ -161,7 +160,6 @@ export default class ThemeManager extends AddonManager {
_validateManifest (manifest) {
const errors = [];
console.log(manifest);
for (const entry of MANIFEST_VALIDATION) {
const isValid = entry.types.some(type => typeOf(manifest[entry.prop]) === type);
if (!isValid && entry.type === 'required') {

Loading…
Cancel
Save