File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
frontend/src/ts/controllers Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ import { navigate } from "./route-controller";
4848import { FirebaseError } from "firebase/app" ;
4949import * as PSA from "../elements/psa" ;
5050import defaultResultFilters from "../constants/default-result-filters" ;
51+ import { getActiveFunboxes } from "../test/funbox/list" ;
5152
5253export const gmailProvider = new GoogleAuthProvider ( ) ;
5354export const githubProvider = new GithubAuthProvider ( ) ;
@@ -171,6 +172,11 @@ async function getDataAndInit(): Promise<boolean> {
171172 ) ;
172173 await UpdateConfig . apply ( snapshot . config ) ;
173174 UpdateConfig . saveFullConfigToLocalStorage ( true ) ;
175+
176+ //funboxes might be different and they wont activate on the account page
177+ for ( const fb of getActiveFunboxes ( ) ) {
178+ fb . functions ?. applyGlobalCSS ?.( ) ;
179+ }
174180 }
175181 AccountButton . loading ( false ) ;
176182 TagController . loadActiveFromLocalStorage ( ) ;
You can’t perform that action at this time.
0 commit comments