Skip to content

Commit

Permalink
fix(clerk-js): Set the new value for passkey section text color schem…
Browse files Browse the repository at this point in the history
…es (#2988)
  • Loading branch information
desiprisg committed Mar 13, 2024
1 parent da4049c commit a50f856
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .changeset/fluffy-schools-begin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ const PasskeyInfo = (props: PasskeyResource) => {
gap={1}
>
<Text>{name}</Text>
<Text colorScheme='neutral'>Created: {t(getRelativeToNowDateKey(createdAt))}</Text>
{lastUsedAt && <Text colorScheme='neutral'>Last used: {t(getRelativeToNowDateKey(lastUsedAt))}</Text>}
<Text colorScheme='secondary'>Created: {t(getRelativeToNowDateKey(createdAt))}</Text>
{lastUsedAt && <Text colorScheme='secondary'>Last used: {t(getRelativeToNowDateKey(lastUsedAt))}</Text>}
</Col>
</Flex>
);
Expand Down

0 comments on commit a50f856

Please sign in to comment.