feat(tracker): 3.4.4 heatmaps default false

This commit is contained in:
ShiKhu 2021-10-04 18:07:16 +02:00
parent bf44bcbef4
commit 0a0be4c43d
2 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
{
"name": "@openreplay/tracker",
"description": "The OpenReplay tracker main package",
"version": "3.4.3",
"version": "3.4.4",
"keywords": [
"logging",
"replay"

View file

@ -83,12 +83,12 @@ export interface Options {
export default function (app: App, opts: Partial<Options>): void {
const options: Options = Object.assign(
{
heatmaps: {
finder: {
threshold: 5,
maxNumberOfTries: 600,
},
},
heatmaps: false // {
// finder: {
// threshold: 5,
// maxNumberOfTries: 600,
// },
// },
},
opts,
);