You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
392 B

export const getRegionNameById = (id, normalizedRegions) =>
normalizedRegions?.[id]?.name ?? id;
export const commonPopupConfig = [
{
name: "Address",
field: "building_address",
},
{
name: "TP number",
field: "tp_number",
},
{
name: "Dispatcher center number",
field: "ods_number",
},
{
name: "Dispatcher phone",
field: "phone_number",
}
];