From 142bf182454892271e57e7e9cbad50a7ad1488a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20=C5=BBydek?= Date: Thu, 29 Jan 2026 15:42:59 +0100 Subject: [PATCH] docs: remove unused extended field from useVisitorData example --- src/use-visitor-data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/use-visitor-data.ts b/src/use-visitor-data.ts index cf1d917f..f1c95b65 100644 --- a/src/use-visitor-data.ts +++ b/src/use-visitor-data.ts @@ -31,7 +31,7 @@ export type UseVisitorDataReturn = VisitorQueryResult & { * error, * // A method to be called manually when the `immediate` field in the config is set to `false`: * getData, - * } = useVisitorData({ extended: true, immediate: false }); + * } = useVisitorData({ immediate: false }); * ``` * Use the `useVisitorData` hook in your components to perform identification requests with the Fingerprint API. The returned object contains information about loading status, errors, and visitor. *