Skip to content

Commit

Permalink
fix issue if manifest has no developer section
Browse files Browse the repository at this point in the history
  • Loading branch information
Garrett Downs committed Dec 12, 2021
1 parent 7711fd7 commit 89c4139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DevicePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 89c4139

Please sign in to comment.