> ## Documentation Index
> Fetch the complete documentation index at: https://insightsoftware-preview.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Users

export const InlineImage = ({src, href, alt = "", size = "medium", customSize, position = "left", children}) => {
  const sizeClasses = {
    small: "w-6 h-6",
    medium: "w-8 h-8",
    large: "w-12 h-12",
    xlarge: "w-16 h-16"
  };
  const ImageComponent = () => <img src={src} alt={alt} className={customSize ? '' : sizeClasses[size]} style={{
    verticalAlign: 'baseline',
    display: 'inline-block',
    margin: '0',
    padding: '0',
    border: 'none',
    maxHeight: '1em',
    ...customSize ? {
      width: customSize,
      height: customSize
    } : {
      width: '1em',
      height: '1em'
    }
  }} />;
  const imageElement = href ? <a href={href} className="inline-block border-b-0 no-underline">
            <ImageComponent />
        </a> : <ImageComponent />;
  return <>
            {position === "left" && imageElement}
            {position === "left" && " "}
            {children}
            {position === "right" && " "}
            {position === "right" && imageElement}
        </>;
};

Composer administrators or a user who has been assigned to a group with user management privileges can delete users in Composer or individual Composer tenants.

## Delete a User (Supervisors Group Members)

1. Log in as the supplied [admin user](https://logi-composer-v23.insightsoftware.com/hc/en-us/articles/38058484743949-Supplied-Users-and-User-Groups#The2) (System Administrator) or a member of the Supervisors group. Select <b>System Users</b> to open the Manage Users work area and list all users in your environment.

2. On the left side of the Manage Users work area, select the name of the user you want to delete and select its delete ( <InlineImage src="/images/image_2257.png" alt="" />) icon. A warning dialog opens.

3. Select <b>Delete</b> to remove the user.

The user is removed from the Composer instance and from all Composer tenants to which it is assigned. See Assign and Remove Users in Tenants.

## Modify a User (Administrator Group Members, Group Members with User Management Privileges)

1. Log in as an administrator or a user who has been assigned to a group with user management privileges.

If the user name you log in with is also associated with other Composer tenants, verify that the correct tenant is selected. See Switch Tenants.

2. Select <b>Users and Groups</b> on the [UI menu](/logi-symphony/composer/v25/navigate/the-composer-ui-menu) ( <InlineImage src="/images/image_4991.png" alt="" />). The Users and Groups page appears. It consists of two sections:<b>Users</b> and <b>Groups</b>.

3. Select <b>Users</b> to see a list of all the users defined for the tenant.

4. Select the name of the user you want to delete and select its delete ( <InlineImage src="/images/image_2257.png" alt="" />) icon. A warning dialog opens.

5. Select <b>Delete</b> to remove the user.

The user is removed from the selected Composer tenant, but will still exist in the instance and in any other Composer tenants to which it is assigned. See Assign and Remove Users in Tenants.
