Skip to content

Commit

Permalink
Merge pull request #673 from jembi/CU-86c09529a_Clients-Microfrontend…
Browse files Browse the repository at this point in the history
…-Fixes

fx: update page headings in client role form
  • Loading branch information
drizzentic authored Sep 11, 2024
2 parents 67f3717 + 7aa9e1c commit 59e94b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ const defaultClientRoleState: ClientRole = {

const pageHeadingTypography = {
addClientUserRole: {
heading: 'Add User Role',
heading: 'Add Client Role',
caption:
'Control client systems and their access roles. Add client to enable their request routing and group them by roles for streamlined channel access management'
},
editClientUserRole: {
heading: 'Edit User Role',
heading: 'Edit Client Role',
caption:
'Control client systems and their access roles. Add clients to enable their request routing and group them by roles for streamlined channel access management.'
}
Expand Down
2 changes: 1 addition & 1 deletion packages/clients-app/src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const ClientSchema = z.object({
message: 'Client ID must be above 1 character',
}),
name: z.string().min(1).max(255),
roles: z.array(z.string()).min(1),
roles: z.array(z.string()).optional(),
organization: z.string().optional(),
softwareName: z.string().optional(),
description: z.string().optional(),
Expand Down

0 comments on commit 59e94b1

Please sign in to comment.