fix(deps): update dependency typescript-eslint to ^8.28.0 (#2693)

* fix(deps): update dependency typescript-eslint to ^8.28.0

* fix: lint issues

---------

Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com>
Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
homarr-renovate[bot]
2025-03-26 20:17:23 +00:00
committed by GitHub
parent 07f0abf28c
commit f624611540
5 changed files with 64 additions and 71 deletions

View File

@@ -65,9 +65,7 @@ export class KubernetesClient {
}
public static getInstance(): KubernetesClient {
if (!KubernetesClient.instance) {
KubernetesClient.instance = new KubernetesClient();
}
KubernetesClient.instance ??= new KubernetesClient();
return KubernetesClient.instance;
}
}