change(tracker): remove deprecated stuff

This commit is contained in:
sylenien 2022-09-12 16:27:20 +02:00 committed by Delirium
parent 6731d6dc3b
commit 3e0aa04091

View file

@ -66,14 +66,6 @@ export function hasOpenreplayAttribute(e: Element, name: string): boolean {
}
return true
}
const oldName = `data-asayer-${name}`
if (e.hasAttribute(oldName)) {
deprecationWarn(
`"${oldName}" attribute`,
`"${newName}" attribute`,
'/installation/sanitize-data',
)
return true
}
return false
}