diff --git a/src/shared/contextual-tours.test.ts b/src/shared/contextual-tours.test.ts index a73dcb643..58b8c396d 100644 --- a/src/shared/contextual-tours.test.ts +++ b/src/shared/contextual-tours.test.ts @@ -71,15 +71,14 @@ describe('contextual tour definitions', () => { expect(tour?.steps[1]?.secondaryAction).toBeUndefined() }) - it('points the workspace board tour at the board center, done lane, and settings', () => { + it('points the workspace board tour at the board center and done lane', () => { const tour = CONTEXTUAL_TOURS.find((entry) => entry.id === 'workspace-board') as | ContextualTour | undefined expect(tour?.steps.map((step) => step.title)).toEqual([ 'Plan work on the board', - 'Move work through lanes', - 'Tune density' + 'Move work through lanes' ]) expect(tour?.steps[0]).toMatchObject({ targetSelector: '[data-contextual-tour-target="workspace-board-center"]', @@ -91,11 +90,6 @@ describe('contextual tour definitions', () => { targetSelector: '[data-contextual-tour-target="workspace-board-done-lane"], [data-contextual-tour-target="workspace-board-lanes"]' }) - expect(tour?.steps[2]).toMatchObject({ - body: 'Use board settings to switch between detailed and compact cards.', - targetSelector: - '[data-contextual-tour-target="workspace-board-settings"], [data-contextual-tour-target="workspace-board-lanes"]' - }) }) it('orders the browser tour as grab, annotate, then import cookies', () => { diff --git a/src/shared/contextual-tours.ts b/src/shared/contextual-tours.ts index c3b3f67d5..e57161d38 100644 --- a/src/shared/contextual-tours.ts +++ b/src/shared/contextual-tours.ts @@ -66,12 +66,6 @@ export const CONTEXTUAL_TOURS = [ body: 'Drag workspaces between lanes as their status changes.', targetSelector: '[data-contextual-tour-target="workspace-board-done-lane"], [data-contextual-tour-target="workspace-board-lanes"]' - }, - { - title: 'Tune density', - body: 'Use board settings to switch between detailed and compact cards.', - targetSelector: - '[data-contextual-tour-target="workspace-board-settings"], [data-contextual-tour-target="workspace-board-lanes"]' } ] },