Skip to content

Commit 507f00b

Browse files
author
Eiman Eltigani
committed
cleaning and restoring comments among files
1 parent 8e691f7 commit 507f00b

5 files changed

Lines changed: 8 additions & 4 deletions

File tree

  • tools/hashing-tool
  • web-integrations
    • google-secure-signals/client-server
    • javascript-sdk
      • client-server/public/stylesheets
      • client-side/html/stylesheets
      • react-client-side/src/styles

tools/hashing-tool/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ h2 {
154154
line-height: 1.8;
155155
}
156156

157-
/* Section summary - test environment note */
157+
/* Section summary - same styling as intro but gray */
158158
p.section-summary {
159159
font-size: 0.95rem;
160160
color: var(--text-gray);

web-integrations/google-secure-signals/client-server/server.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const uidJsSdkName = process.env.UID_JS_SDK_NAME || '__uid2';
1919

2020
// Secure Signals configuration
2121
const secureSignalsSdkUrl = process.env.UID_SECURE_SIGNALS_SDK_URL || 'https://cdn.integ.uidapi.com/uid2SecureSignal.js';
22+
const secureSignalsStorageKey = process.env.UID_SECURE_SIGNALS_STORAGE_KEY || '_GESPSK-uidapi.com';
2223

2324
// UI/Display configuration
2425
const identityName = process.env.IDENTITY_NAME;
@@ -48,7 +49,7 @@ app.get('/', (req, res) => {
4849
uidJsSdkUrl,
4950
uidJsSdkName,
5051
secureSignalsSdkUrl,
51-
secureSignalsStorageKey: process.env.UID_SECURE_SIGNALS_STORAGE_KEY,
52+
secureSignalsStorageKey,
5253
identityName,
5354
docsBaseUrl
5455
});
@@ -147,7 +148,7 @@ app.post('/login', async (req, res) => {
147148
uidJsSdkUrl,
148149
uidJsSdkName,
149150
secureSignalsSdkUrl,
150-
secureSignalsStorageKey: process.env.UID_SECURE_SIGNALS_STORAGE_KEY,
151+
secureSignalsStorageKey,
151152
identityName,
152153
docsBaseUrl
153154
});
@@ -173,7 +174,7 @@ app.post('/login', async (req, res) => {
173174
uidJsSdkUrl,
174175
uidJsSdkName,
175176
secureSignalsSdkUrl,
176-
secureSignalsStorageKey: process.env.UID_SECURE_SIGNALS_STORAGE_KEY,
177+
secureSignalsStorageKey,
177178
identityName,
178179
docsBaseUrl
179180
});

web-integrations/javascript-sdk/client-server/public/stylesheets/app.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ p {
135135
line-height: 1.8;
136136
}
137137

138+
/* Section summary - same styling as intro but gray */
138139
p.section-summary {
139140
font-size: 0.95rem;
140141
color: var(--text-gray);

web-integrations/javascript-sdk/client-side/html/stylesheets/app.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ p {
150150
line-height: 1.8;
151151
}
152152

153+
/* Section summary - same styling as intro but gray */
153154
p.section-summary {
154155
font-size: 0.95rem;
155156
color: var(--text-gray);

web-integrations/javascript-sdk/react-client-side/src/styles/app.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ p {
150150
line-height: 1.8;
151151
}
152152

153+
/* Section summary - same styling as intro but gray */
153154
p.section-summary {
154155
font-size: 0.95rem;
155156
color: var(--text-gray);

0 commit comments

Comments
 (0)