remove console.log

This commit is contained in:
Maxime Cannoodt 2022-06-30 21:40:24 +02:00
parent f0d11b9cdb
commit 67a6cb5f23

View File

@ -9,7 +9,6 @@
if (response.ok) {
try {
const note: EncryptedNote = await response.json();
console.log(note.expire_time);
note.insert_time = new Date(note.insert_time as unknown as string);
note.expire_time = new Date(note.expire_time as unknown as string);
const maxage = Math.floor((note.expire_time.valueOf() - note.insert_time.valueOf()) / 1000);