Debugging

This commit is contained in:
Lim Chee Aun 2023-04-06 10:24:21 +08:00
parent dffd344deb
commit e6ad1f78ad

View file

@ -211,7 +211,7 @@ function Timeline({
console.log('✨ Check updates'); console.log('✨ Check updates');
const hasUpdate = await checkForUpdates(); const hasUpdate = await checkForUpdates();
if (hasUpdate) { if (hasUpdate) {
console.log('✨ Has new updates'); console.log('✨ Has new updates', id);
setShowNew(true); setShowNew(true);
} }
})(); })();
@ -231,7 +231,7 @@ function Timeline({
console.log('✨ Check updates'); console.log('✨ Check updates');
const hasUpdate = await checkForUpdates(); const hasUpdate = await checkForUpdates();
if (hasUpdate) { if (hasUpdate) {
console.log('✨ Has new updates'); console.log('✨ Has new updates', id);
setShowNew(true); setShowNew(true);
} }
})(); })();