remove useless logs

This commit is contained in:
SethBurkart123
2024-05-20 23:30:37 +10:00
parent 3898cc3a4e
commit f6c22ae846
-3
View File
@@ -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<string>((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);