diff --git a/components/brave_rewards/resources/page/components/adsBox.tsx b/components/brave_rewards/resources/page/components/adsBox.tsx index 18c7af618d93..8587c2d45a1f 100644 --- a/components/brave_rewards/resources/page/components/adsBox.tsx +++ b/components/brave_rewards/resources/page/components/adsBox.tsx @@ -280,11 +280,8 @@ class AdsBox extends React.Component { const toggle = !(!enabledMain || !adsUIEnabled || !adsIsSupported) const showDisabled = firstLoad !== false || !toggle || !adsEnabled || !adsIsSupported - if (!adsHistory) { - return null - } - - const rows = this.getAdHistoryData(adsHistory, savedOnly) + const historyEntries = adsHistory || [] + const rows = this.getAdHistoryData(historyEntries, savedOnly) const notEmpty = rows && rows.length !== 0 return (