We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63188a9 commit f8872cfCopy full SHA for f8872cf
frontend/src/components/EventList/EventList.tsx
@@ -9,6 +9,7 @@ import { fontSizes, spacing } from '../../styling'
9
import { humanizeDays } from '../../models/plans'
10
import { EventItem } from './EventItem'
11
import { Notice } from '../Notice'
12
+import browser from '../../services/browser'
13
14
export interface LogListProps {
15
device?: IDevice
@@ -26,7 +27,7 @@ export const EventList: React.FC<LogListProps> = ({ device }) => {
26
27
await dispatch.logs.fetch()
28
}
29
- const showPlanUpgradeNotice = Boolean(planUpgrade && !fetching && !fetchingMore)
30
+ const showPlanUpgradeNotice = Boolean(planUpgrade && !fetching && !fetchingMore && !browser.isAndroid)
31
32
return (
33
<>
0 commit comments