1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove redundant optional chaining

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-07-22 08:33:10 +03:00
parent baa9fc9146
commit 52200d7f9a
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A

View File

@ -70,7 +70,7 @@ const releaseDetailsModelInjectable = getInjectable({
lifecycle: lifecycleEnum.keyedSingleton({
getInstanceKey: (di, release: TargetHelmRelease) =>
`${release?.namespace}/${release?.name}`,
`${release.namespace}/${release.name}`,
}),
});