> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/sdks/sdk-web/componentes/selphi-biometria-facial/propiedades/disabletutorial.md).

# disableTutorial

## Details

**Attribute:** `disable-tutorial`

**Type:** `boolean`

**Default value:** `false`

## Morphology

```typescript
selphi.disableTutorial = true;
```

## Description

Disables the tutorial screen before capture in `facephi-selphi-widget`.

### Additional information

**Compatibility:** Replaces `tutorial` in previous versions of the SDK Web.

**Recommended property:** use `showTutorial` in new integrations (**inverse logic**: `showTutorial = true` is equivalent to `disableTutorial = false`).

**Precedence:** if you define `disableTutorial` and `showTutorial` at the same time, `showTutorial` takes precedence and a precedence warning is emitted in the console.

**Deprecation:** `disableTutorial` is still operational in this version, but it will be removed in the next major version. Use only `disableTutorial` emits a deprecation warning in the console.

***

## Example

```jsx
<facephi-selphi-widget
    disableTutorial={true}
/>
```
