Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ <h1>UID2 Publisher Client-Side Integration Example using UID2 JavaScript SDK, Se
name="email"
placeholder="Enter an email address"
style="border-style: none"
value="test@example.com"
value="validate@example.com"
/>
</div>
<div><button type="button" class="button" id="login">Log In</button>></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const SecureSignalsApp = () => {
const [advertisingToken, setAdvertisingToken] = useState<string>('undefined');
const [loginRequired, setLoginRequired] = useState<boolean>(true);
const [identityState, setIdentityState] = useState('');
const [email, setEmail] = useState<string>('test@example.com');
const [email, setEmail] = useState<string>('validate@example.com');
const [identity, setIdentity] = useState(null);
const [isUid2Enabled, setIsUid2Enabled] = useState<boolean>(true);
const [adsLoaded, setAdsLoaded] = useState<boolean>(false);
Expand Down Expand Up @@ -287,7 +287,8 @@ const SecureSignalsApp = () => {
return (
<div>
<h1>
UID2 Publisher Client-Side Integration Example using UID2 JavaScript SDK, Secure Signals
UID2 Publisher Client-Side Integration Example using React, UID2 JavaScript SDK, Secure
Signals
</h1>
<p>
This example demonstrates how a content publisher can follow the{' '}
Expand Down
Loading