{newTenantConfig.filter((step) => step.name.toLowerCase() !== "congratulation").map((step, index) => {
const isActive = activeTab === index;
const isCompleted = completedTabs.includes(index);
return (
{index < newTenantConfig.length - 1 && (
)}
);
})}