---
title: "Understanding flow dismiss, snooze, and restart"
slug: "understanding-flow-dismiss-snooze-and-restart"
updated: 2026-08-10T18:48:20Z
published: 2026-08-10T18:48:20Z
canonical: "help.userflow.com/understanding-flow-dismiss-snooze-and-restart"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.userflow.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Understanding flow dismiss, snooze, and restart

When a flow ends, what happens next depends on *how* it ended and on the flow's frequency settings. This guide explains the difference between dismiss, complete, snooze, and restart, and how to fix the two most common surprises: a flow that keeps reappearing, and a flow that won't reappear.

## Dismiss vs. complete

- **Dismiss** ends the flow without finishing it — the user clicks the X, or a button/trigger fires a **Dismiss** action. Starting another flow ("Start a flow" action) also auto-dismisses the current one.
- **Complete** means the user reached a completion step. By default the last step completes the flow; you can mark any step as an explicit completion step.

Both dismiss and complete create a **session record** for that user and flow. That record is what frequency rules check against later.

## Snooze

Add a **Snooze flow** action (or a snooze button) to any step and set a duration. The flow closes and reappears after the snooze period — but only if its auto-start conditions are true again at that point. The button can use any label ("Remind me later," "Ask me again later").

## What happens to progress on reload or re-identify

Progress through a flow is stored on Userflow's servers against the user, not in the page. Every step's state is kept on the backend, so a user who is partway through a flow and reloads the page, or navigates to a different page in your app, picks the flow up at the step they had reached rather than starting over from step one.

Two consequences are worth knowing:

- **Calling userflow.identify() again does not restart the flow.** Re-identifying the same user on a new page is normal and expected — it doesn't reset progress or start the flow over.
- **Once a flow has started, it stops looking at the URL.** Auto-start conditions, including any URL condition, are what decide whether a flow *begins*. After that, each step goes wherever the step itself specifies. A flow in progress won't stop because the user moved to a page that wouldn't have started it.

**One thing to watch:** if a step points at a tooltip target, give your app enough time to render that element after the reload. If the element isn't there yet when the step is evaluated, the step can time out. Raise the step's timeout if you see this. See [Flow step timeouts — what they are and how to handle them](https://help.userflow.com/docs/flow-step-timeouts).

## Restart

There are two ways a flow can show again:

- **Exit menu (per-theme).** In **Settings → Theme**, you can set the X-button to show an exit menu with **Show the close/restart menu** instead of dismissing immediately. The exit menu appears only on steps after the first.
- **Frequency settings.** By default a flow is **"Only start once per user."** To allow it to recur, change the frequency to start multiple/unlimited times.

## "My flow keeps restarting after the user dismisses it"

This happens when frequency is set to start multiple/unlimited times with no guard. Add an event condition so a fresh session doesn't immediately re-trigger — for example: *Flow started exactly 0 times in the last 1 hr where flow id is* `&lt;flow id&gt;`.

## "My flow won't restart, even after I edited it"

The user already has a completed or dismissed session, and "Only start once per user" is preventing a repeat. Editing or republishing the flow does **not** reset history. To re-show it:

- Delete that user's session for the flow (**user profile → session → Delete session**), or
- Change the frequency setting, or
- For testing, delete the user entirely to reset all history.

## Related

- Snooze a flow
- Flow builder basics (Ending flows / exit menu)
- How to start flows or checklists (frequency settings)
- Deleting or resetting user data
- Flow targeting and audience rules
