Skip to content

Commit

Permalink
chore: review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JuroUhlar committed Dec 11, 2023
1 parent e94b16b commit c8703c9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion playwright.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig, devices } from '@playwright/test';
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv;
* https://github.com/motdotla/dotenv
*/
import 'dotenv/config';

Expand Down
34 changes: 17 additions & 17 deletions src/client/components/common/content.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable react/jsx-key */
import Link from 'next/link';
import SmartSignalsIcon from '../../img/smartSignalsIcon.svg';
import CouponFraudIcon from '../../img/couponFraudIcon.svg';
Expand Down Expand Up @@ -38,11 +37,11 @@ export const USE_CASES = {
url: '/coupon-fraud',
iconSvg: CouponFraudIcon,
descriptionHomepage: [
<p>
<p key="1">
Safeguard campaign funds from abuse by implementing Fingerprint to identify bad faith users who repeatedly use
coupon codes
</p>,
<p>
<p key="2">
Accurately identify coupon fraud by signed-in customers or guests to ensure your marketing campaign yields its
full potential.
</p>,
Expand Down Expand Up @@ -97,12 +96,11 @@ export const USE_CASES = {
],
iconSvg: CredentialStuffingIcon,
descriptionHomepage: [
<p>
<p key="1">
Protect your users against credential stuffing using Fingerprint’s unique visitor ID provided for each user that
visits your site.
</p>,

<p>
<p key="2">
Fingerprint's accurate identification prevents fraudsters from unauthorized account access, minimizing
disruption for legitimate users.
</p>,
Expand Down Expand Up @@ -141,10 +139,10 @@ export const USE_CASES = {
articleUrl: 'https://fingerprint.com/blog/detect-repeat-applications-loan-risk/',
iconSvg: LoanRiskIcon,
descriptionHomepage: [
<p>
<p key="1">
Validate loan applications against prior submissions by users, whether they are anonymous or authenticated.
</p>,
<p>
<p key="2">
Use Fingerprint to check for consistency between applications and ignore submissions from previously rejected
applicants.
</p>,
Expand Down Expand Up @@ -181,7 +179,7 @@ export const USE_CASES = {
articleUrl: 'https://fingerprint.com/blog/reducing-payment-fraud-with-reliable-visitor-identification/',
iconSvg: PaymentFraudIcon,
descriptionHomepage: [
<p>
<p key="1">
Identify anonymous visitors behind every transaction. Use Fingerprint’s Identification to recognize repeated
card testing activity and link it to specific users. Protect your users and your business against various forms
of payment fraud.
Expand Down Expand Up @@ -231,11 +229,13 @@ export const USE_CASES = {
url: '/paywall',
iconSvg: PaywallIcon,
descriptionHomepage: [
<p>
<p key="1">
Accurately identify returning users to provide limited access to your content and ensure users aren’t able to
exceed their predetermined limits.
</p>,
<p>Your content limit for each user will work even if the user clears cookies or browses in incognito mode.</p>,
<p key="2">
Your content limit for each user will work even if the user clears cookies or browses in incognito mode.
</p>,
],
description:
'Use the demo below to see how Fingerprint protects your content from users trying to circumvent your paywall. ',
Expand All @@ -261,10 +261,10 @@ export const USE_CASES = {
articleUrl: 'https://fingerprint.com/blog/providing-personalization-to-anonymous-users/',
iconSvg: PersonalizationIcon,
descriptionHomepage: [
<p>
<p key="1">
Improve user experience and boost sales by personalizing your website with Fingerprint device intelligence.
</p>,
<p>
<p key="2">
Provide your visitors with their search history, interface customization, or a persistent shopping cart without
having to rely on cookies or logins.
</p>,
Expand Down Expand Up @@ -307,11 +307,11 @@ export const USE_CASES = {
articleUrl: 'https://fingerprint.com/blog/preventing-content-scraping/',
iconSvg: ScrapingIcon,
descriptionHomepage: [
<p>
<p key="1">
Web scraping extracts data using automated scripts. Data that is valuable to competitors can be stolen, directly
impacting your business.
</p>,
<p>
<p key="2">
Fingerprint Smart Signal bot detection offers advanced protection without compromising user experience or
relying on IP-based solutions.
</p>,
Expand Down Expand Up @@ -381,8 +381,8 @@ export const PLAYGROUND_METADATA: Pick<
url: '/playground',
iconSvg: SmartSignalsIcon,
descriptionHomepage: [
<p>Analyze your own browser with Fingerprint’s identification and Smart Signals.</p>,
<p>
<p key="1">Analyze your own browser with Fingerprint’s identification and Smart Signals.</p>,
<p key="2">
Test and examine Fingerprint’s signals including IP geolocation, browser bot detection, incognito mode detection,
VPN detection, browser tampering detection, IP blocklist matching, and more.
</p>,
Expand Down

0 comments on commit c8703c9

Please sign in to comment.