fix: remove debug console.log
Všechny kontroly byly úspěšné
continuous-integration/drone/push Build is passing

Tento commit je obsažen v:
2023-05-08 03:40:59 +02:00
rodič 620296d22f
revize 4927ef369a

Zobrazit soubor

@@ -44,7 +44,6 @@ const dataFromCache: Ref<Observable<any>> = ref(null);
if (isDataOutdated(props.name)) {
emits('cached', storeInCache(props.callback(), props.name));
} else {
console.log('Sending cached data');
let data = localStorage.getItem(props.name);
try {
emits('cached', of(JSON.parse(data)));