kyd-shared-badge 0.3.103 → 0.3.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -223,7 +223,9 @@ const AppendixTables: React.FC<AppendixTableProps> = ({ type, sources, searchedA
|
|
|
223
223
|
entityName: s['Entity Name'],
|
|
224
224
|
url: s.URL,
|
|
225
225
|
}))
|
|
226
|
-
: (sources as BusinessRuleRow[])
|
|
226
|
+
: (sources as BusinessRuleRow[])
|
|
227
|
+
.filter(s => !((s?.provider || '').toLowerCase().includes('linkedin')))
|
|
228
|
+
.map(s => ({
|
|
227
229
|
provider: s.provider,
|
|
228
230
|
// Keep original category label; pillar derived from genreMapping
|
|
229
231
|
category: s.category || '',
|
|
@@ -290,18 +290,24 @@ export function ConnectAccounts(props: ConnectAccountsProps) {
|
|
|
290
290
|
initial="initial" animate="animate" exit="exit" variants={cardVariants}
|
|
291
291
|
>
|
|
292
292
|
{selectedProvider.id === 'linkedin' && (
|
|
293
|
-
|
|
294
|
-
<
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
293
|
+
<>
|
|
294
|
+
<p className="sm:text-xs items-center text-[10px] text-[var(--text-secondary)] leading-relaxed max-w-xs mx-auto -mt-2">
|
|
295
|
+
<Link
|
|
296
|
+
href="https://www.linkedin.com/public-profile/settings"
|
|
297
|
+
target="_blank"
|
|
298
|
+
rel="noopener noreferrer"
|
|
299
|
+
className="underline"
|
|
300
|
+
style={{ color: 'var(--icon-accent)' }}
|
|
301
|
+
>
|
|
302
|
+
LinkedIn <ExternalLink className="size-3 inline-block ml-1 underline-0" />
|
|
303
|
+
</Link>
|
|
304
|
+
. This opens your public profile settings (you’ll see your shareable URL if you’re signed in).
|
|
305
|
+
</p>
|
|
306
|
+
<p className="sm:text-xs items-center text-[10px] text-[var(--text-secondary)] leading-relaxed max-w-xs mx-auto -mt-2">
|
|
307
|
+
LinkedIn data is not used to contribute to your score.
|
|
308
|
+
</p>
|
|
309
|
+
</>
|
|
310
|
+
|
|
305
311
|
)}
|
|
306
312
|
<div className="relative">
|
|
307
313
|
<LinkIcon className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-[var(--text-secondary)]" />
|