general: remove console logs, linting

This commit is contained in:
Rajeh Taher
2025-09-08 23:11:32 +03:00
parent d0f8713247
commit a2e7e070fc
4 changed files with 2 additions and 10 deletions
+1 -5
View File
@@ -258,11 +258,7 @@ export const fetchLatestBaileysVersion = async (options: AxiosRequestConfig<{}>
const versionMatch = versionLine!.match(/const version = \[(\d+),\s*(\d+),\s*(\d+)\]/)
if (versionMatch) {
const version = [
parseInt(versionMatch[1]!),
parseInt(versionMatch[2]!),
parseInt(versionMatch[3]!)
] as WAVersion
const version = [parseInt(versionMatch[1]!), parseInt(versionMatch[2]!), parseInt(versionMatch[3]!)] as WAVersion
return {
version,