Skip to content

Commit

Permalink
add url to see what filters people are supplying
Browse files Browse the repository at this point in the history
  • Loading branch information
shalanah committed Mar 26, 2024
1 parent 2e56f23 commit bacf911
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/sw.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const FAQ = [
],
[
'Do you track me?',
'iOS404 uses TelemetryDeck. TelemetryDeck does not collect any personally identifiable information. This helps to understand how our users are using the website and how we can improve it. iOS404 sends a best guess on country, device type (phone/tablet/desktop), and vendor (Apple/Google). You can read more about [TelemetryDeck’s privacy policy](https://telemetrydeck.com/privacy)',
'iOS404 uses TelemetryDeck. TelemetryDeck does not collect any personally identifiable information. This helps to understand how our users are using the website and how we can improve it. iOS404 sends a best guess on country, device type (phone/tablet/desktop), vendor (Apple/Google). You can read more about [TelemetryDeck’s privacy policy](https://telemetrydeck.com/privacy)',
],
['', 'Copyright 2024. All Rights Reserved - Shalanah Dawson'],
];
Expand Down
1 change: 1 addition & 0 deletions src/hooks/useTelemetryDeck.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export const useTelemetryDeck = () => {
'country or tz': getCountry(), // trying to obscure tz by using country instead if we can
vendor,
device: isIpad ? 'tablet' : device,
url: window.location.href, // to understand if people are sharing with site filters or hashes
});
}, []);
};

0 comments on commit bacf911

Please sign in to comment.