Dont render Android results, if not confirmed

pull/215/head
Alicia Sykes 1 month ago
parent 484c30aa93
commit daa641eb2b

@ -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…
Cancel
Save