Skip to content

Commit

Permalink
fix: notification card title
Browse files Browse the repository at this point in the history
Signed-off-by: Jan <github@janr.xyz>
  • Loading branch information
Jan authored and Tommylans committed Jan 18, 2024
1 parent efb2cc9 commit f85eb90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/app/components/InboxNotificationRowCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ export default function InboxNotificationRowCard({
>
<XStack bg="$grey-700" h="$5" w="$5" br="$2" />
<YStack jc="space-between">
<Paragraph variant="sub" secondary fontSize="$1">
<Paragraph variant="sub" numberOfLines={1} opacity={0.8}>
{description}
</Paragraph>
<Heading variant="h3" numberOfLines={1} fontSize="$6">
<Heading variant="h3" numberOfLines={1} size="$4">
{title}
</Heading>
</YStack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function NotificationInboxScreen() {
<ScrollView px="$4" pt="$2">
<YStack width="100%" overflow="hidden" g="md">
{inboxNotifications.map((notification) => {
let description = ` ${
let description = `${
notification.type === 'CredentialRecord' ? 'Credential offer' : 'Data request'
}`
if (notification.contactLabel) {
Expand Down

0 comments on commit f85eb90

Please sign in to comment.