Organization_Management : Organization Hierarchy #443

Merged
pramod.mahajan merged 180 commits from Organization_Management into main 2025-09-30 09:07:31 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit a873ace109 - Show all commits

View File

@ -224,7 +224,7 @@ const SubScription = ({ onSubmitSubScription, onNext }) => {
</div>
{Object.keys(errors).length > 0 && (
<div class="alert alert-danger" role="alert">
<div role="alert">
{Object.entries(errors).map(([key, error]) => (
<div key={key} className="danger-text">
{error?.message}

View File

@ -59,7 +59,7 @@ export const tenantDefaultValues = {
export const getSubscriptionSchema = (minUsers) =>
z.object({
planId: z.string().min(1, { message: "Please select Plan" }),
planId: z.string().min(1, { message: "Please select a plan to continue" }),
currencyId: z.string().uuid("Invalid currency"),
maxUsers: z
.number({ invalid_type_error: "Must be a number" })