@@ -301,7 +296,11 @@ const SoftwareInstallerCard = ({
sha256={sha256}
isFma={isFleetMaintainedApp}
isScriptPackage={isScriptPackage}
- androidPlayStoreLink={androidPlayStoreLink}
+ androidPlayStoreId={
+ isAndroidPlayStoreApp
+ ? softwareInstaller?.app_store_id
+ : undefined
+ }
/>
{Array.isArray(automaticInstallPolicies) &&
diff --git a/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/SoftwareInstallerCard/helpers.ts b/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/SoftwareInstallerCard/helpers.ts
index 9c5015d6a5..9acbf748d0 100644
--- a/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/SoftwareInstallerCard/helpers.ts
+++ b/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/SoftwareInstallerCard/helpers.ts
@@ -48,6 +48,3 @@ export const downloadFile = (url: string, fileName: string) => {
// Clean up above-created "a" element
downloadLink.remove();
};
-
-export const PLAY_STORE_APP_BASE_URL =
- "https://play.google.com/store/apps/details?id=";