diff --git a/src/blobbi/dev/BlobbiDevEditor.tsx b/src/blobbi/dev/BlobbiDevEditor.tsx index 4799a329..437d0ff1 100644 --- a/src/blobbi/dev/BlobbiDevEditor.tsx +++ b/src/blobbi/dev/BlobbiDevEditor.tsx @@ -29,9 +29,9 @@ import { ADULT_FORMS } from '@/blobbi/adult-blobbi/types/adult.types'; /** Tour dev actions for the first-hatch tour */ interface FirstHatchTourDevActions { - /** Skip the current step (for dev testing) */ - skipPostRequirement: () => void; - /** Reset the tour in-memory state AND the profile tags so it can be tested again */ + /** Jump from idle directly to egg_glowing_waiting_click (skip the auto-advance) */ + skipToEggGlow: () => void; + /** Reset in-memory tour state AND Kind 11125 profile tags so the tour can re-activate */ resetTour: () => Promise; /** Current tour step id, or null if not active */ currentStepId: string | null; @@ -561,25 +561,25 @@ export function BlobbiDevEditor({

- Test the first-hatch tour flow without needing to create a real post. + Test the first-hatch tour. Profile tag blobbi_first_hatch_tour_done is the persisted signal.

- {/* A. Skip Post Requirement */} + {/* A. Skip idle → egg glow */} - {/* B. Restart First-Hatch Tour (resets profile tags + in-memory state) */} + {/* B. Restart tour (resets profile tags + in-memory state) */} - {/* C. Reset Blobbi to Egg */} + {/* C. Reset Blobbi to egg + restart tour */}