Compare commits

..

No commits in common. "7f42d33f6791305039896dbc53aa5caf8b074d80" and "884b47845d7f93b0b790dd8d16f6e2e20312d9d7" have entirely different histories.

2 changed files with 3 additions and 8 deletions

View file

@ -90,7 +90,7 @@
class="btn button-default palette-entry"
:class="{ toggled: isPaletteActive(p.key), disabled: switchInProgress }"
:disabled="switchInProgress"
@click="() => setPalette(p.key, p)"
@click="() => setLocalPalette(p.key, p)"
>
<div class="palette-label">
<label>
@ -113,7 +113,7 @@
class="btn button-default palette-entry"
:class="{ toggled: isPaletteActive(p.key), disabled: switchInProgress }"
:disabled="switchInProgress"
@click="() => setPalette(p.key, p)"
@click="() => setLocalPalette(p.key, p)"
>
<div class="palette-label">
<label>
@ -143,7 +143,7 @@
:compact="true"
:apply="true"
:disabled="switchInProgress"
@apply-palette="data => setPaletteCustom(data)"
@apply-palette="data => setLocalPaletteCustom(data)"
/>
</template>
<template v-else-if="customThemeVersion === 'v2'">

View file

@ -704,11 +704,6 @@ const users = {
useSyncConfigStore().initSyncConfig(user)
useUserHighlightStore().initUserHighlight(user)
useInterfaceStore()
.applyTheme()
.catch((e) => {
console.error('Error setting theme', e)
})
commit('addNewUsers', [user])
useEmojiStore().fetchEmoji()