diff --git a/packages/app/features/notifications/components/CredentialNotificationScreen.tsx b/packages/app/features/notifications/components/CredentialNotificationScreen.tsx index 37aaafd1..710c9d56 100644 --- a/packages/app/features/notifications/components/CredentialNotificationScreen.tsx +++ b/packages/app/features/notifications/components/CredentialNotificationScreen.tsx @@ -26,8 +26,14 @@ export function CredentialNotificationScreen({ }: CredentialNotificationScreenProps) { const { bottom } = useSafeAreaInsets() return ( - - + + You have received a credential diff --git a/packages/app/features/notifications/components/PresentationNotificationScreen.tsx b/packages/app/features/notifications/components/PresentationNotificationScreen.tsx index 2faf7c1f..55a24bd6 100644 --- a/packages/app/features/notifications/components/PresentationNotificationScreen.tsx +++ b/packages/app/features/notifications/components/PresentationNotificationScreen.tsx @@ -75,7 +75,7 @@ export function PresentationNotificationScreen({ {s.requestedAttributes.map((a) => ( - + • {sanitizeString(a)} ))} diff --git a/packages/ui/src/panels/ToastContainer.tsx b/packages/ui/src/panels/ToastContainer.tsx index a34dad1a..d0e726d8 100644 --- a/packages/ui/src/panels/ToastContainer.tsx +++ b/packages/ui/src/panels/ToastContainer.tsx @@ -1,6 +1,6 @@ import { useToastController } from '@tamagui/toast' -import { Paragraph, XStack } from '../base' +import { Paragraph, Stack, XStack } from '../base' import { X } from '../content' interface ToastContainerProps { @@ -26,7 +26,9 @@ export const ToastContainer = ({ title, safeAreaMargin = false }: ToastContainer ai="center" > {title} - toast.hide()} color="$grey-600" /> + toast.hide()}> + + ) }