Skip to content

Commit e544973

Browse files
changed title with react and changed example email to validate
1 parent 601610c commit e544973

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

examples/google-secure-signals-integration/client_side/views/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ <h1>UID2 Publisher Client-Side Integration Example using UID2 JavaScript SDK, Se
6868
name="email"
6969
placeholder="Enter an email address"
7070
style="border-style: none"
71-
value="test@example.com"
71+
value="validate@example.com"
7272
/>
7373
</div>
7474
<div><button type="button" class="button" id="login">Log In</button>></div>

examples/google-secure-signals-integration/react_client_side/src/SecureSignalsApp.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const SecureSignalsApp = () => {
2424
const [advertisingToken, setAdvertisingToken] = useState<string>('undefined');
2525
const [loginRequired, setLoginRequired] = useState<boolean>(true);
2626
const [identityState, setIdentityState] = useState('');
27-
const [email, setEmail] = useState<string>('test@example.com');
27+
const [email, setEmail] = useState<string>('validate@example.com');
2828
const [identity, setIdentity] = useState(null);
2929
const [isUid2Enabled, setIsUid2Enabled] = useState<boolean>(true);
3030
const [adsLoaded, setAdsLoaded] = useState<boolean>(false);
@@ -287,7 +287,8 @@ const SecureSignalsApp = () => {
287287
return (
288288
<div>
289289
<h1>
290-
UID2 Publisher Client-Side Integration Example using UID2 JavaScript SDK, Secure Signals
290+
UID2 Publisher Client-Side Integration Example using React, UID2 JavaScript SDK, Secure
291+
Signals
291292
</h1>
292293
<p>
293294
This example demonstrates how a content publisher can follow the{' '}

0 commit comments

Comments
 (0)