Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
Add Qualified tracking script
Browse files Browse the repository at this point in the history
We currently use this script on the main Teleport site for analyzing
pipeline. This change adds the script to the docs site as well.
  • Loading branch information
ptgott committed Jan 29, 2024
1 parent aa41e19 commit e99c605
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,19 @@ const Analytics = () => {
<Script id="add_dataLayer">
{`window.dataLayer = window.dataLayer || []`}
</Script>
{/* Script for adding Qualified (https://www.qualified.com/)*/}
<Script id="script_qualified">
{`
(function(w,q){
w['QualifiedObject']=q;
w[q]=w[q]||function(){
(w[q].q=w[q].q||[]).push(arguments)
};
})(window,'qualified')
`}
</Script>
<Script src="https://js.qualified.com/qualified.js?token=GWPbwWJLtjykim4W" />

Check warning on line 87 in pages/_app.tsx

View check run for this annotation

Orca Security (US) / Orca Security - Secrets

[LOW] Generic High Entropy Secret

A high entropy secret has been identified. High entropy secrets are typically complex and random strings that are difficult to guess due to their high information density. They are useful for secure authentication, data protection, and other cryptographic purposes. This detection is based on common patterns and characteristics associated with high entropy values commonly used in various services. Exposing high entropy secrets, tokens, or keys poses a significant security risk. Unauthorized individuals can potentially misuse these secrets to gain unintended access, leading to data breaches, unauthorized transactions, and financial losses. Always ensure that high entropy values are kept confidential and not exposed in public or unsecured areas.
{/* End script for adding Qualified */}
{NEXT_PUBLIC_GTM_ID && (
<>
{/* Google Tag Manager */}
Expand Down

0 comments on commit e99c605

Please sign in to comment.