Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: smart signal capitalization #184

Merged
merged 2 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -435,7 +435,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 @@ -476,7 +476,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 @@ -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
</DocsLink>,
],
},
Expand Down Expand Up @@ -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
</DocsLink>,
],
},
Expand Down
Loading