From 89c41391eedc5bffd61d8104cfbad2a6b0862452 Mon Sep 17 00:00:00 2001 From: Garrett Downs Date: Sun, 12 Dec 2021 17:14:56 -0500 Subject: [PATCH] fix issue if manifest has no developer section --- src/components/DevicePanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DevicePanel.tsx b/src/components/DevicePanel.tsx index 84a55ca..be0a94e 100644 --- a/src/components/DevicePanel.tsx +++ b/src/components/DevicePanel.tsx @@ -95,7 +95,7 @@ export function DevicePanel({ panelId }: Props): JSX.Element { key={app.id} appId={app.id} name={app.manifest.name} - author={app.manifest.developer.name} + author={app.manifest.developer?.name || 'Unknown'} description={app.manifest.description} installed={true} showLaunchBtn={true}