diff --git a/components/brave_rewards/resources/ui/components/walletWrapper/index.tsx b/components/brave_rewards/resources/ui/components/walletWrapper/index.tsx index cbd0dd0481bd..805e12f39371 100644 --- a/components/brave_rewards/resources/ui/components/walletWrapper/index.tsx +++ b/components/brave_rewards/resources/ui/components/walletWrapper/index.tsx @@ -81,7 +81,7 @@ export interface ActionWallet { action: () => void } -export type NotificationType = 'ads' | 'backupWallet' | 'contribute' | 'grant' | 'insufficientFunds' | 'error' | '' +export type NotificationType = 'ads' | 'backupWallet' | 'contribute' | 'grant' | 'insufficientFunds' | 'tipsProcessed' | 'error' | '' export interface Notification { id: string @@ -315,6 +315,7 @@ export default class WalletWrapper extends React.PureComponent { icon = megaphoneIconUrl break case 'contribute': + case 'tipsProcessed': icon = loveIconUrl break case 'grant': @@ -356,6 +357,9 @@ export default class WalletWrapper extends React.PureComponent { case 'insufficientFunds': typeText = getLocale('insufficientFunds') break + case 'tipsProcessed': + typeText = getLocale('contributionTips') + break default: typeText = '' break