We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f743a68 + 595fa70 commit d9f8d87Copy full SHA for d9f8d87
components/home.js
@@ -250,7 +250,7 @@ export default function Home({ }) {
250
const hashBuffer = await crypto.subtle.digest('SHA-256', data);
251
const hashArray = Array.from(new Uint8Array(hashBuffer));
252
const hashHex = hashArray.map(b => b.toString(16).padStart(2, '0')).join('');
253
- window.nitroAds.addUserToken(hashHex, 'SHA-256');
+ window.nitroAds.addUserToken(email, 'PLAIN');
254
} catch (e) {
255
// Silently fail - ad targeting is non-critical
256
}
0 commit comments