Skip to content

Commit

Permalink
Replace template literal with string for content in PrivilegeTR compo…
Browse files Browse the repository at this point in the history
…nent
  • Loading branch information
pranavgoel29 committed Nov 23, 2024
1 parent 0ba6917 commit cad22e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/AccessManagement/PrivilegeTR.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ const PrivilegeTR: FC<PrivilegeTRProps> = (props) => {
onClose={handleClosePrivilegeDelete}
header={'Delete Privilege'}
specialContent={<Text>{getBadge(getRoleData?.data[deletePrivilegeIndex], deletePrivilegeIndex, false)}</Text>}
content={`Are you sure you want to delete this role privilege?`}
content="Are you sure you want to delete this role privilege?"
placeholder="Type name of the role to confirm."
confirmationText={roleName}
onConfirm={handlePrivilegeDelete}
Expand Down

0 comments on commit cad22e8

Please sign in to comment.