logs: better error handling

This commit is contained in:
Julien Calixte
2026-02-15 12:35:44 +01:00
parent e0e095f7e5
commit 5c31be6aa9
2 changed files with 22 additions and 21 deletions

View File

@@ -2,6 +2,6 @@ export type Note = {
did: string;
rkey: string;
title: string;
publishedAt: Date;
createdAt: Date;
publishedAt: string;
createdAt: string;
};