From f6c22ae846db4aae0ece4ec3545c77aef27e5e39 Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Mon, 20 May 2024 23:30:37 +1000 Subject: [PATCH] remove useless logs --- src/seqta/ui/themes/shareTheme.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/seqta/ui/themes/shareTheme.ts b/src/seqta/ui/themes/shareTheme.ts index 38fb14f0..d2ed6e25 100644 --- a/src/seqta/ui/themes/shareTheme.ts +++ b/src/seqta/ui/themes/shareTheme.ts @@ -24,7 +24,6 @@ const shareTheme = async (themeID: string) => { // Extract images and coverImage from themeData, if they exist const { CustomImages = [], coverImage, ...themeWithoutImages } = themeData; - console.log('themeData', themeData); // Helper function to convert Blob to Base64 const blobToBase64 = (blob: Blob) => new Promise((resolve, reject) => { @@ -66,8 +65,6 @@ const shareTheme = async (themeID: string) => { images: finalImages, }; - console.log('Final data', data); - saveThemeFile(data, themeData.name || 'Unnamed_Theme'); } catch (error) { console.error('Error sharing theme:', error);