From 0c6582346af5a04289a80896a814a6cddb849606 Mon Sep 17 00:00:00 2001 From: Juraj Uhlar Date: Thu, 28 Nov 2024 12:40:30 +0000 Subject: [PATCH 1/2] fix: smart isgnal capitalization --- src/app/playground/Playground.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/playground/Playground.tsx b/src/app/playground/Playground.tsx index b5a7560a..19ef0a7e 100644 --- a/src/app/playground/Playground.tsx +++ b/src/app/playground/Playground.tsx @@ -152,7 +152,7 @@ export function Playground() { ], [ { - content: Last seen, + content: Last Seen, }, { content: agentResponse?.lastSeenAt.global ? ( @@ -435,7 +435,7 @@ export function Playground() { { content: [ - Velocity signals + Velocity Signals , ], }, @@ -476,7 +476,7 @@ export function Playground() { { content: [ - Raw device attributes + Raw Device Attributes , ], }, @@ -515,7 +515,7 @@ export function Playground() { href='https://dev.fingerprint.com/docs/smart-signals-reference#geolocation-spoofing-detection' key='spoof' > - Location spoofing + Location Spoofing , ], }, @@ -551,7 +551,7 @@ export function Playground() { href='https://dev.fingerprint.com/docs/smart-signals-reference#rooted-device-detection' key='tamper' > - Rooted device + Rooted Device , ], }, From 793f0f7639baaef14ccdda41163452a2aceda58b Mon Sep 17 00:00:00 2001 From: Juraj Uhlar Date: Fri, 29 Nov 2024 11:16:45 +0000 Subject: [PATCH 2/2] chore: fix test --- e2e/playground.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/playground.spec.ts b/e2e/playground.spec.ts index fd62ba60..747fe01a 100644 --- a/e2e/playground.spec.ts +++ b/e2e/playground.spec.ts @@ -52,7 +52,7 @@ test.describe('Playground page', () => { }); test('Page renders signal tables', async ({ page }) => { - await page.getByText('Last seen', { exact: true }).waitFor(); + await page.getByText('Last Seen', { exact: true }).waitFor(); await page.getByText('Confidence Score', { exact: true }).waitFor(); await page.getByText('Geolocation', { exact: true }).waitFor();