summaryrefslogtreecommitdiff
path: root/packages/frontend-embed/src/components
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-03-20 15:15:46 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-03-20 15:15:46 +0900
commitfd3e28812e6d8658b47512664cae03ddfcb0ed74 (patch)
treec5e7ae932a293c4988ccc4d681a9f85cc73cda4a /packages/frontend-embed/src/components
parentadd todo (diff)
downloadsharkey-fd3e28812e6d8658b47512664cae03ddfcb0ed74.tar.gz
sharkey-fd3e28812e6d8658b47512664cae03ddfcb0ed74.tar.bz2
sharkey-fd3e28812e6d8658b47512664cae03ddfcb0ed74.zip
clean up console
Diffstat (limited to 'packages/frontend-embed/src/components')
-rw-r--r--packages/frontend-embed/src/components/EmImgWithBlurhash.vue2
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/frontend-embed/src/components/EmImgWithBlurhash.vue b/packages/frontend-embed/src/components/EmImgWithBlurhash.vue
index bf976c71ae..0bff048ce4 100644
--- a/packages/frontend-embed/src/components/EmImgWithBlurhash.vue
+++ b/packages/frontend-embed/src/components/EmImgWithBlurhash.vue
@@ -33,13 +33,11 @@ const canvasPromise = new Promise<WorkerMultiDispatch | HTMLCanvasElement>(resol
Math.min(navigator.hardwareConcurrency - 1, 4),
);
resolve(workers);
- if (_DEV_) console.log('WebGL2 in worker is supported!');
} else {
const canvas = document.createElement('canvas');
canvas.width = 64;
canvas.height = 64;
resolve(canvas);
- if (_DEV_) console.log('WebGL2 in worker is not supported...');
}
testWorker.terminate();
});