From 4b529ad8df8789de545054b0a701b108ad5d15ee Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Tue, 3 Dec 2024 13:21:04 -0700 Subject: [PATCH] only show the 'with data' string when the provided resource has a path to show --- src/components/instantlaunches/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/instantlaunches/index.js b/src/components/instantlaunches/index.js index 58f498af4..1f1fe95e2 100644 --- a/src/components/instantlaunches/index.js +++ b/src/components/instantlaunches/index.js @@ -63,7 +63,7 @@ export const InstantLaunchSubmissionDialog = ({ {appInfo && ( - {resource + {resource && resource.path ? t("launchingAppWithData", { appName: appInfo.name, path: resource.path,