chore: remove unnecessary console.log

This commit is contained in:
GleidsonDaniel 2024-03-27 14:31:42 -03:00
parent 33dacbb0cd
commit f899e9b1ca
1 changed files with 2 additions and 1 deletions

View File

@ -18,4 +18,5 @@ export type TKeyEmitterEvent = keyof TEmitterEvents;
export const emitter = mitt<TEmitterEvents>();
emitter.on('*', (type, e) => console.log(type, e));
// uncomment the line below to log all events
// emitter.on('*', (type, e) => console.log(type, e));