Skip to content

Commit f8872cf

Browse files
committed
fix: do not show upgrade banner for android devices
1 parent 63188a9 commit f8872cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/src/components/EventList/EventList.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { fontSizes, spacing } from '../../styling'
99
import { humanizeDays } from '../../models/plans'
1010
import { EventItem } from './EventItem'
1111
import { Notice } from '../Notice'
12+
import browser from '../../services/browser'
1213

1314
export interface LogListProps {
1415
device?: IDevice
@@ -26,7 +27,7 @@ export const EventList: React.FC<LogListProps> = ({ device }) => {
2627
await dispatch.logs.fetch()
2728
}
2829

29-
const showPlanUpgradeNotice = Boolean(planUpgrade && !fetching && !fetchingMore)
30+
const showPlanUpgradeNotice = Boolean(planUpgrade && !fetching && !fetchingMore && !browser.isAndroid)
3031

3132
return (
3233
<>

0 commit comments

Comments
 (0)