mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat: Upgrade nodes-base package to use modern tsconfig.json (no-changelog) (#16884)
This commit is contained in:
@@ -193,7 +193,9 @@ export function getAddressesUi(): INodeProperties {
|
||||
};
|
||||
}
|
||||
|
||||
export function adjustAddresses(addresses: [{ street: string; [key: string]: string }]): Address[] {
|
||||
export function adjustAddresses(
|
||||
addresses: Array<{ street: string; [key: string]: string }>,
|
||||
): Address[] {
|
||||
const _addresses: Address[] = [];
|
||||
for (let i = 0; i < addresses.length; i++) {
|
||||
if (addresses[i]?.region === '') {
|
||||
|
||||
Reference in New Issue
Block a user