diff --git a/src/interface/hooks/ThemeManagment.ts b/src/interface/hooks/ThemeManagment.ts index 4c1bbcee..32d6621b 100644 --- a/src/interface/hooks/ThemeManagment.ts +++ b/src/interface/hooks/ThemeManagment.ts @@ -77,7 +77,6 @@ export const sendThemeUpdate = (updatedTheme: CustomTheme, saveTheme?: boolean, const imageDataPromises = updatedTheme.CustomImages.map(async (image) => { if (saveTheme || updateImages) { - console.log('Saving image:', image); const base64 = await blobToBase64(image.blob); return { id: image.id, diff --git a/src/interface/pages/ThemeCreator.tsx b/src/interface/pages/ThemeCreator.tsx index b41f72c2..699f59b9 100644 --- a/src/interface/pages/ThemeCreator.tsx +++ b/src/interface/pages/ThemeCreator.tsx @@ -92,8 +92,6 @@ function ThemeCreator() { const urlParams = new URLSearchParams(window.location.search); const themeID = urlParams.get('themeID'); - console.log('ThemeID:', themeID); - if (themeID) { getTheme(themeID); } diff --git a/src/seqta/ui/themes/getAvailableThemes.ts b/src/seqta/ui/themes/getAvailableThemes.ts index 82978d47..ae5680ef 100644 --- a/src/seqta/ui/themes/getAvailableThemes.ts +++ b/src/seqta/ui/themes/getAvailableThemes.ts @@ -7,12 +7,10 @@ import { blobToBase64 } from '../../utils/blobToBase64'; export const getAvailableThemes = async (): Promise => { try { const themeIds = await localforage.getItem('customThemes') as string[] | null; - console.log('Available themes:', themeIds); if (themeIds) { const themes = await Promise.all( themeIds.map(async (id) => { const theme = await localforage.getItem(id) as CustomTheme; - console.log('CoverImage: ', theme.coverImage) const { CustomImages, ...themeWithoutImages } = theme; return { ...themeWithoutImages,