Skip to content

Commit

Permalink
fix: smart signal capitalization (#184)
Browse files Browse the repository at this point in the history
* fix: smart isgnal capitalization

* chore: fix test
  • Loading branch information
JuroUhlar authored Dec 3, 2024
1 parent 0235646 commit b981352
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion e2e/playground.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
10 changes: 5 additions & 5 deletions src/app/playground/Playground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export function Playground() {
],
[
{
content: <DocsLink href='https://dev.fingerprint.com/docs/useful-timestamps'>Last seen</DocsLink>,
content: <DocsLink href='https://dev.fingerprint.com/docs/useful-timestamps'>Last Seen</DocsLink>,
},
{
content: agentResponse?.lastSeenAt.global ? (
Expand Down Expand Up @@ -430,7 +430,7 @@ export function Playground() {
{
content: [
<DocsLink href='https://dev.fingerprint.com/docs/smart-signals-reference#velocity-signals' key='velocity '>
Velocity signals
Velocity Signals
</DocsLink>,
],
},
Expand Down Expand Up @@ -471,7 +471,7 @@ export function Playground() {
{
content: [
<DocsLink href='https://dev.fingerprint.com/docs/smart-signals-reference#raw-device-attributes' key='raw'>
Raw device attributes
Raw Device Attributes
</DocsLink>,
],
},
Expand Down Expand Up @@ -510,7 +510,7 @@ export function Playground() {
href='https://dev.fingerprint.com/docs/smart-signals-reference#geolocation-spoofing-detection'
key='spoof'
>
Location spoofing
Location Spoofing
</DocsLink>,
],
},
Expand Down Expand Up @@ -546,7 +546,7 @@ export function Playground() {
href='https://dev.fingerprint.com/docs/smart-signals-reference#rooted-device-detection'
key='tamper'
>
Rooted device
Rooted Device
</DocsLink>,
],
},
Expand Down

0 comments on commit b981352

Please sign in to comment.