https://github.com/jatin2507/loggerverse/blob/8fb5a36d29a0fbecfc33fbaeacbf4d856af121a2/src/services/dashboard.ts#L548
Should be changed to JSON.stringify(log.meta)?.toLowerCase().includes(searchLower). Not all logs have meta.
I am getting the error TypeError: Cannot read properties of undefined (reading 'toLowerCase') if a log doesn't have meta.
https://github.com/jatin2507/loggerverse/blob/8fb5a36d29a0fbecfc33fbaeacbf4d856af121a2/src/services/dashboard.ts#L548
Should be changed to
JSON.stringify(log.meta)?.toLowerCase().includes(searchLower). Not all logs have meta.I am getting the error
TypeError: Cannot read properties of undefined (reading 'toLowerCase')if a log doesn't have meta.