🚨 run eslint --fix

This commit is contained in:
Fred KISSIE
2025-12-03 16:58:12 +01:00
parent f060063f53
commit f5bfddd262
5 changed files with 10 additions and 10 deletions

View File

@@ -304,7 +304,7 @@ export async function getNextAvailableOrgSubnet(): Promise<string> {
}
export function generateRemoteSubnets(allSiteResources: SiteResource[]): string[] {
let remoteSubnets = allSiteResources
const remoteSubnets = allSiteResources
.filter((sr) => {
if (sr.mode === "cidr") return true;
if (sr.mode === "host") {
@@ -344,7 +344,7 @@ export function generateSubnetProxyTargets(
subnet: string | null;
}[]
): SubnetProxyTarget[] {
let targets: SubnetProxyTarget[] = [];
const targets: SubnetProxyTarget[] = [];
if (clients.length === 0) {
logger.debug(

View File

@@ -392,9 +392,9 @@ async function handleMessagesForSiteClients(
return;
}
let newtJobs: Promise<any>[] = [];
let olmJobs: Promise<any>[] = [];
let exitNodeJobs: Promise<any>[] = [];
const newtJobs: Promise<any>[] = [];
const olmJobs: Promise<any>[] = [];
const exitNodeJobs: Promise<any>[] = [];
// Combine all clients that need processing (those being added or removed)
const clientsToProcess = new Map<
@@ -678,8 +678,8 @@ async function handleSubnetProxyTargetUpdates(
return;
}
let proxyJobs = [];
let olmJobs = [];
const proxyJobs = [];
const olmJobs = [];
// Generate targets for added associations
if (clientSiteResourcesToAdd.length > 0) {
const addedClients = allClients.filter((client) =>