Move Profile Editor into the new Settings Tab

This commit is contained in:
Scott Nonnenberg
2025-06-03 09:46:52 +10:00
committed by GitHub
parent 829b84a54e
commit 799a0dcc54
51 changed files with 1480 additions and 960 deletions

View File

@@ -10,21 +10,6 @@ import {
} from '../../../state/ducks/globalModals';
describe('both/state/ducks/globalModals', () => {
describe('toggleProfileEditor', () => {
const { toggleProfileEditor } = actions;
it('toggles isProfileEditorVisible', () => {
const state = getEmptyState();
const nextState = reducer(state, toggleProfileEditor());
assert.isTrue(nextState.isProfileEditorVisible);
const nextNextState = reducer(nextState, toggleProfileEditor());
assert.isFalse(nextNextState.isProfileEditorVisible);
});
});
describe('showWhatsNewModal/hideWhatsNewModal', () => {
const { showWhatsNewModal, hideWhatsNewModal } = actions;