We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0534320 commit ba116bfCopy full SHA for ba116bf
frontend/components/SupportPage/SupportPage.tsx
@@ -14,12 +14,14 @@ const { Paragraph, Title } = Typography
14
15
interface SupportPageProps {
16
isCashBackVisible: boolean
17
+ isTelemetryVisible: boolean
18
logoComponent: ReactNode
19
pluginSlug: string
20
}
21
22
export default function SupportPage({
23
isCashBackVisible = true,
24
+ isTelemetryVisible = true,
25
logoComponent,
26
pluginSlug
27
}: SupportPageProps) {
@@ -42,7 +44,7 @@ export default function SupportPage({
42
44
43
45
<License pluginSlug={pluginSlug} />
46
- <Improvement />
47
+ {isTelemetryVisible && <Improvement />}
48
49
<SupportLinks pluginSlug={pluginSlug} />
50
</Col>
0 commit comments