fix theme switch on add instance
This commit is contained in:
parent
c49c80305c
commit
9d9e6716d5
|
@ -52,6 +52,7 @@
|
|||
import { registerApplication, generateAuthLink, getAccessTokenFromAuthCode } from '../../_utils/mastodon/oauth'
|
||||
import { store } from '../../_utils/store'
|
||||
import { goto } from 'sapper/runtime.js'
|
||||
import { switchToTheme } from '../../_utils/themeEngine'
|
||||
|
||||
const REDIRECT_URI = (typeof location !== 'undefined' ?
|
||||
location.origin : 'https://pinafore.social') + '/settings/instances/add'
|
||||
|
@ -121,6 +122,7 @@
|
|||
instanceThemes: instanceThemes
|
||||
})
|
||||
this.store.save()
|
||||
switchToTheme('default')
|
||||
goto('/')
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue