diff --git a/src/lib/push_notifications_plugin.js b/src/lib/push_notifications_plugin.js index 7d44625c2..9eff52fff 100644 --- a/src/lib/push_notifications_plugin.js +++ b/src/lib/push_notifications_plugin.js @@ -83,7 +83,6 @@ export const vuexPushNotificationsPlugin = (store) => { mutation.type === 'setCurrentUser' || mutation.type === 'clearCurrentUser' ) { - console.log(!!user, permissionGranted, enabled) if (user && permissionGranted && enabled) { return store.dispatch('registerPushNotifications') } else { diff --git a/src/services/new_api/oauth.js b/src/services/new_api/oauth.js index ead2153a6..b803e2146 100644 --- a/src/services/new_api/oauth.js +++ b/src/services/new_api/oauth.js @@ -20,10 +20,8 @@ export const getJsonOrError = async (response) => { } export const createApp = (instance) => { - console.log('NAP', instance) const url = `${instance}/api/v1/apps` const form = new window.FormData() - console.log(url) form.append('client_name', 'PleromaFE') form.append('website', 'https://pleroma.social') diff --git a/src/services/style_setter/style_setter.js b/src/services/style_setter/style_setter.js index 5c0a7326b..d2e8d97e8 100644 --- a/src/services/style_setter/style_setter.js +++ b/src/services/style_setter/style_setter.js @@ -136,7 +136,6 @@ const generateTheme = (inputRuleset, callbacks, debug) => { export const tryLoadCache = async () => { console.info('Trying to load compiled theme data from cache') const cache = await localforage.getItem('pleromafe-theme-cache') - console.log(cache.checksum) if (!cache) return null try { if (cache.engineChecksum === getEngineChecksum() && diff --git a/src/stores/oauth.js b/src/stores/oauth.js index ef0f5ba35..2a79c2fa9 100644 --- a/src/stores/oauth.js +++ b/src/stores/oauth.js @@ -83,7 +83,6 @@ export const useOAuthStore = defineStore('oauth', { }, async getAppToken() { const instance = useInstanceStore().server - console.log(this.clientId) const res = await getClientToken({ clientId: this.clientId, clientSecret: this.clientSecret, diff --git a/src/stores/sync_config.js b/src/stores/sync_config.js index 244489074..e56cf3210 100644 --- a/src/stores/sync_config.js +++ b/src/stores/sync_config.js @@ -80,7 +80,6 @@ export const _moveItemInArray = (array, value, movement) => { } const _wrapData = (data, userName) => { - console.log('WRAP') return { ...data, _user: userName, @@ -414,8 +413,6 @@ export const _resetPrefs = ( } export const _doMigrations = async (data, setPreference) => { - console.log('TEST', data._version) - if (data._version < VERSION) { console.debug( 'Data has older version, seeing if there any migrations that can be applied',