diff --git a/react/AppSections/components/__snapshots__/AppsSection.spec.jsx.snap b/react/AppSections/components/__snapshots__/AppsSection.spec.jsx.snap index e2c6fa593c..ec14d0b8ef 100644 --- a/react/AppSections/components/__snapshots__/AppsSection.spec.jsx.snap +++ b/react/AppSections/components/__snapshots__/AppsSection.spec.jsx.snap @@ -28,7 +28,7 @@ Array [ "title": "Cozy Photos", }, Object { - "developer": "By undefined", + "developer": null, "status": "Update available", "title": "Tasky", }, diff --git a/react/AppTile/index.jsx b/react/AppTile/index.jsx index b9f8b0838d..073d418001 100644 --- a/react/AppTile/index.jsx +++ b/react/AppTile/index.jsx @@ -69,9 +69,6 @@ export const AppTile = ({ const isInMaintenanceWithSpecificDisplay = displaySpecificMaintenanceStyle && statusLabel === APP_STATUS.maintenance - const tileSubtitle = isShortcutFile(app) - ? app.metadata?.source - : developer.name return ( {namePrefix ? `${namePrefix} ${name}` : name} - {showDeveloper && ( - {`${t('app_item.by')} ${tileSubtitle}`} + {developer.name && showDeveloper && ( + {`${t('app_item.by')} ${developer.name}`} )} {statusToDisplay && (