Remove some logs.

This commit is contained in:
muzam1l
2023-02-21 16:30:01 +05:30
parent ba95eb5be2
commit bd1a0c9836
9 changed files with 11 additions and 13 deletions

View File

@@ -40,7 +40,6 @@ const EnrichLog: FC<EnrichLogProps> = ({ str }) => {
if (match.startsWith('HookSet')) {
const code = match.match(/^HookSet\((\d+)\)/)?.[1]
const val = hookSetCodes.find(v => code && v.code === +code)
console.log({ code, val })
if (!val) return match
const content = capitalize(val.description) || 'No hint available!'