🚨 Format code

This commit is contained in:
2025-09-24 21:44:42 +08:00
parent 1462d8a753
commit f5bfff80b7
76 changed files with 839 additions and 863 deletions

View File

@@ -196,7 +196,7 @@ const saveEdit = async () => {
try {
await documentStore.updateDocumentMetadata(editingId.value, trimmedTitle);
await documentStore.updateDocuments();
} catch (error) {
} catch (_error) {
return;
}
}
@@ -292,7 +292,7 @@ const formatTime = (dateString: string | null) => {
minute: '2-digit',
hour12: false
});
} catch (error) {
} catch (_error) {
return t('toolbar.timeError');
}
};