Remove console.log from the kitchensink-ts index.ts file

This commit is contained in:
Convly 2022-04-14 14:59:13 +02:00
parent 431ccbe55c
commit 8729ba6fdd

View File

@ -9,9 +9,7 @@ export default {
}, },
bootstrap({ strapi }: { strapi: Strapi }) { bootstrap({ strapi }: { strapi: Strapi }) {
const result = strapi.customAddMethod(11, 31); // This should return 42
strapi.customAddMethod(11, 31);
// This should print "42"
console.log(result);
}, },
}; };