Skip to content

Commit

Permalink
Make InLineNotification work with i18next useTranslation
Browse files Browse the repository at this point in the history
  • Loading branch information
denvalora committed Nov 8, 2023
1 parent e2d0a76 commit dcd67a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/InLineNotification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ export enum Severity {

interface Props {
severity: Severity
title?: string
title?: string | null
description: string
style?: StyleProp<ViewStyle>
ctaLabel?: string
ctaLabel?: string | null
onPressCta?: () => void
ctaLabel2?: string
ctaLabel2?: string | null
onPressCta2?: () => void
testID?: string
}
Expand Down

0 comments on commit dcd67a2

Please sign in to comment.