From 249caabd6782a2cd01e60922b145b083e9b153f4 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Sun, 10 Nov 2024 21:01:35 +0100 Subject: [PATCH] refactor: remove logger --- src/components/Library.astro | 150 ++++++++++++++++++++--------------- src/sw.mjs | 28 +++---- src/utils/feature-flags.ts | 6 -- src/utils/logger.ts | 35 -------- 4 files changed, 99 insertions(+), 120 deletions(-) delete mode 100644 src/utils/feature-flags.ts delete mode 100644 src/utils/logger.ts diff --git a/src/components/Library.astro b/src/components/Library.astro index 2989232..54d1127 100644 --- a/src/components/Library.astro +++ b/src/components/Library.astro @@ -1,79 +1,95 @@ --- export interface Props { - skipSave?: boolean + skipSave?: boolean; } --- +
-