mirror of
https://github.com/Lissy93/awesome-privacy.git
synced 2026-03-11 08:55:33 +00:00
Dont render Android results, if not confirmed
This commit is contained in:
parent
484c30aa93
commit
daa641eb2b
2 changed files with 2 additions and 1 deletions
|
|
@ -309,7 +309,7 @@ const getApiEndpoint = () => {
|
|||
<WebsiteDetailedInfo url={url} websiteInfo={websiteData} />
|
||||
</section>
|
||||
)}
|
||||
{ androidData && (
|
||||
{ (androidData && !androidData.error) && (
|
||||
<section>
|
||||
<h3>{name} Android App</h3>
|
||||
<AndroidAppDetailedInfo androidData={androidData} />
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ interface Tracker {
|
|||
}
|
||||
|
||||
export interface AndroidInfo {
|
||||
error?: string;
|
||||
handle: string;
|
||||
app_name: string;
|
||||
uaid: string;
|
||||
|
|
|
|||
Loading…
Reference in a new issue