Fix Duplicat elocations (#2512)
parent
dabf5367bc
commit
8132b04a27
|
@ -40,13 +40,14 @@ const defaultLocations: OptionTypeBase[] = [
|
||||||
];
|
];
|
||||||
|
|
||||||
export function getLocationOptions(integrations: AppMeta, t: TFunction) {
|
export function getLocationOptions(integrations: AppMeta, t: TFunction) {
|
||||||
|
const locations = [...defaultLocations];
|
||||||
integrations.forEach((app) => {
|
integrations.forEach((app) => {
|
||||||
if (app.locationOption) {
|
if (app.locationOption) {
|
||||||
defaultLocations.push(app.locationOption);
|
locations.push(app.locationOption);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
return translateLocations(defaultLocations, t);
|
return translateLocations(locations, t);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue