feat(logs): lint

This commit is contained in:
Nicholas Penree
2024-12-11 19:32:34 -05:00
parent 16ca198eb4
commit 8546031df0

View File

@@ -67,7 +67,7 @@ export function parseLogs(logString: string): LogLine[] {
.trim();
return {
rawTimestamp: timestamp,
rawTimestamp: timestamp ?? null,
timestamp: timestamp ? new Date(timestamp.replace(" UTC", "Z")) : null,
message: cleanedMessage,
};