We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 035a453 commit 0f88f71Copy full SHA for 0f88f71
src/components/app/details/appDetails/SourceInfo.tsx
@@ -291,13 +291,15 @@ export const SourceInfo = ({
291
: !isdeploymentAppDeleting &&
292
environment && (
293
<div className="flex left w-100">
294
- <AppStatusCard
295
- appDetails={appDetails}
296
- status={status}
297
- cardLoading={cardLoading}
298
- setDetailed={setDetailed}
299
- message={message}
300
- />
+ {status && (
+ <AppStatusCard
+ appDetails={appDetails}
+ status={status}
+ cardLoading={cardLoading}
+ setDetailed={setDetailed}
+ message={message}
301
+ />
302
+ )}
303
{!helmMigratedAppNotTriggered && (
304
<>
305
{!loadingResourceTree && (
0 commit comments