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

# reset()

> Clear the current user's identification and hide active flows

The `reset()` method clears the current user's identification and immediately hides any active flows. Call this method when users sign out of your application.

## Example

```javascript theme={null}
// Clear user identification on sign out
function handleSignOut() {
  usertour.reset();
  // ... other sign out logic
}
```

## Notes

* This method should be called when users sign out
* All active flows will be hidden immediately
* User identification will be cleared
* Any pending flow conditions will be reset
