> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anchorage.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Managing users

> Add, update, and remove users; change permission levels; recover access.

export const ImageCarousel = ({images, perView = 3, children}) => {
  const [page, setPage] = useState(0);
  const [imgH, setImgH] = useState(0);
  const stripRef = useRef(null);
  const THUMB_MAX_WIDTH = 220;
  const PEEK_WIDTH = 34;
  useEffect(() => {
    const strip = stripRef.current;
    if (!strip) return;
    const measure = () => {
      const box = strip.querySelector("[data-carousel-imgbox]");
      if (box && box.clientHeight) setImgH(box.clientHeight);
    };
    measure();
    const ro = new ResizeObserver(measure);
    ro.observe(strip);
    return () => ro.disconnect();
  }, []);
  const fromChildren = React.Children.toArray(children).map(c => c && c.props && c.props.src ? {
    src: c.props.src,
    alt: c.props.alt
  } : null).filter(Boolean);
  const items = fromChildren.length ? fromChildren : images || [];
  if (!items.length) return null;
  const count = items.length;
  const columns = Math.min(perView, count);
  const totalPages = Math.ceil(count / columns);
  const showControls = totalPages > 1;
  const goTo = p => setPage((p % totalPages + totalPages) % totalPages);
  const prev = () => goTo(page - 1);
  const next = () => goTo(page + 1);
  const start = page * columns;
  const visible = items.slice(start, start + columns);
  const prevPeek = start > 0 ? items[start - 1] : null;
  const nextPeek = start + columns < count ? items[start + columns] : null;
  const renderPeek = (img, side) => {
    if (!img) return null;
    const isLeft = side === "left";
    return <button type="button" onClick={isLeft ? prev : next} aria-hidden="true" tabIndex={-1} style={{
      flex: `0 0 ${PEEK_WIDTH}px`,
      width: PEEK_WIDTH + "px",
      alignSelf: imgH ? "flex-start" : "stretch",
      height: imgH ? imgH + "px" : undefined,
      border: 0,
      padding: 0,
      cursor: "pointer",
      opacity: 0.5,
      borderRadius: isLeft ? "10px 0 0 10px" : "0 10px 10px 0",
      backgroundImage: `url("${img.src}")`,
      backgroundRepeat: "no-repeat",
      backgroundSize: "auto 100%",
      backgroundPosition: isLeft ? "right center" : "left center",
      WebkitMaskImage: `linear-gradient(to ${isLeft ? "left" : "right"}, #000 15%, transparent 100%)`,
      maskImage: `linear-gradient(to ${isLeft ? "left" : "right"}, #000 15%, transparent 100%)`
    }} />;
  };
  const arrowStyle = {
    flex: "0 0 auto",
    width: "30px",
    height: "30px",
    borderRadius: "50%",
    border: "1px solid var(--ad-border, #e4e5e7)",
    background: "var(--background, #fff)",
    fontSize: "16px",
    lineHeight: "28px",
    textAlign: "center",
    cursor: "pointer",
    padding: 0
  };
  return <div style={{
    outline: "none",
    margin: "1.5rem 0"
  }} role={showControls ? "group" : undefined} aria-label={showControls ? "Screenshot carousel" : undefined} aria-roledescription={showControls ? "carousel" : undefined}>
      <div style={{
    display: "flex",
    alignItems: "center",
    gap: "10px"
  }}>
        {showControls && <button type="button" onClick={prev} aria-label="Previous screenshots" style={arrowStyle}>
            ‹
          </button>}

        <div ref={stripRef} style={{
    display: "flex",
    flexWrap: "nowrap",
    alignItems: "flex-start",
    gap: "14px",
    justifyContent: "center",
    flex: 1
  }}>
          {renderPeek(prevPeek, "left")}
          {}
          {Array.from({
    length: columns
  }).map((_, i) => {
    const img = visible[i];
    const slotStyle = {
      margin: 0,
      flex: "1 1 0",
      maxWidth: THUMB_MAX_WIDTH + "px",
      minWidth: 0
    };
    if (!img) {
      return <div key={start + i} aria-hidden="true" style={{
        ...slotStyle,
        visibility: "hidden"
      }} />;
    }
    return <div key={start + i} style={slotStyle}>
                <span data-carousel-imgbox style={{
      display: "block"
    }}>
                  <img src={img.src} alt={img.alt ?? ""} style={{
      display: "block",
      width: "100%",
      height: "auto",
      margin: 0,
      borderRadius: "10px",
      border: "1px solid var(--ad-border, #e4e5e7)"
    }} />
                </span>
                {img.alt && <div style={{
      marginTop: "6px",
      fontSize: "12px",
      lineHeight: 1.4,
      color: "var(--ad-muted, #6b7280)",
      textAlign: "center"
    }}>
                    {img.alt}
                  </div>}
              </div>;
  })}
          {renderPeek(nextPeek, "right")}
        </div>

        {showControls && <button type="button" onClick={next} aria-label="Next screenshots" style={arrowStyle}>
            ›
          </button>}
      </div>

      {showControls && <div style={{
    textAlign: "center",
    marginTop: "8px",
    fontSize: "12px",
    color: "var(--ad-muted, #6b7280)"
  }}>
          {start + 1}
          {visible.length > 1 ? "–" + (start + visible.length) : ""} of {count}
        </div>}
    </div>;
};

## Changing permission levels

Administrators with vault management permissions may adjust user permissions within a vault, and assign or remove administrator access. See [Changing permission levels](/knowledge-base/platform/users/changing-permission-levels) for step-by-step instructions.

## Removing users

Only administrators with user management permissions can remove users.

<Note>
  If the user is an approver on a pending operation, that operation can block their removal. Cancel or complete any pending operation that requires their approval first, then remove the user.
</Note>

<Steps>
  <Step title="Navigate to Team settings">
    Tap the **gear icon** to go to **Settings**, scroll down, and tap **Team**.
  </Step>

  <Step title="Select the user">
    Select the user you want to remove and follow the prompts.
  </Step>

  <Step title="Submit biometric approval">
    After submitting biometric approval, the other administrators will receive a notification to approve the operation. Once quorum is met, Anchorage Digital will review for approval.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/dnKKK5u4vRePxCW5/knowledge-base/images/screenshots/team-setting-highlighted.png?fit=max&auto=format&n=dnKKK5u4vRePxCW5&q=85&s=e74a94901f09a19d358ce7e8b777c1bd" alt="Settings screen with the Team row highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/team-setting-highlighted.png" />

  <img src="https://mintcdn.com/deployment-4/dnKKK5u4vRePxCW5/knowledge-base/images/screenshots/team-list.png?fit=max&auto=format&n=dnKKK5u4vRePxCW5&q=85&s=116b5c84da3cc077e8fe52e965b33137" alt="Team screen listing all users in the organization" width="828" height="1792" data-path="knowledge-base/images/screenshots/team-list.png" />

  <img src="https://mintcdn.com/deployment-4/dnKKK5u4vRePxCW5/knowledge-base/images/screenshots/team-user-detail.png?fit=max&auto=format&n=dnKKK5u4vRePxCW5&q=85&s=797c654a59a6f3fea8f41be6399f2713" alt="User detail screen with the Remove user from organization button" width="828" height="1792" data-path="knowledge-base/images/screenshots/team-user-detail.png" />

  <img src="https://mintcdn.com/deployment-4/dnKKK5u4vRePxCW5/knowledge-base/images/screenshots/team-remove-user.png?fit=max&auto=format&n=dnKKK5u4vRePxCW5&q=85&s=19b666de54d0bae7c493c538a3985d5a" alt="Remove user screen with an optional comment field and Review button" width="828" height="1792" data-path="knowledge-base/images/screenshots/team-remove-user.png" />

  <img src="https://mintcdn.com/deployment-4/dnKKK5u4vRePxCW5/knowledge-base/images/screenshots/team-remove-user-review.png?fit=max&auto=format&n=dnKKK5u4vRePxCW5&q=85&s=54b885dd43595656625b3cc29dc60c0f" alt="Review screen showing the user removal details before biometric approval" width="828" height="1792" data-path="knowledge-base/images/screenshots/team-remove-user-review.png" />
</ImageCarousel>

## Device replacement

If a user loses access to their device, administrators can initiate a device replacement operation.

### Replacing a lost device

When a user no longer has access to their old device:

<Steps>
  <Step title="Install the app on the new device">
    On the new device, tap your profile in the App Store, then tap **Apps**. Search for **Anchorage Digital** and install the mobile app.
  </Step>

  <Step title="Contact Anchorage Digital">
    Contact [accountexecutive@anchorage.com](mailto:accountexecutive@anchorage.com) to initiate the device replacement operation. The old iPhone will be marked as lost.
  </Step>

  <Step title="Administrator initiates replacement">
    An administrator with user management permissions must go to **Settings**, tap **Team**, then tap **Lost device** next to the user's name. Finally, tap **Set up new device**.
  </Step>

  <Step title="Share QR code with user">
    Once **Set up new device** is tapped, share the QR code with the user to scan.
  </Step>

  <Step title="Submit biometric approval">
    The administrator who initiated the operation must go to the **Activity** tab, tap the operation, and submit biometric approval.
  </Step>

  <Step title="Await quorum and Anchorage Digital approval">
    Administrators will receive a notification to approve the operation. Once quorum is met, Anchorage Digital will review for approval.
  </Step>
</Steps>

<Note>
  Only administrators with user management permissions can initiate and approve the replacement operation.
</Note>

### Replacing a device with access to your old device

If you still have access to your old device, see [Device and login recovery](/knowledge-base/platform/users/device-login-recovery) for the self-service steps to replace it.

## Re-installing or updating the iOS app

If you are using the same device and Apple ID that was used to initially download the app, simply update or re-download the app from the App Store — see [Updating the app](/knowledge-base/platform/users/mobile-app#updating-the-app). No device replacement process is needed.

For any issues with re-installation or access recovery, contact [accountexecutive@anchorage.com](mailto:accountexecutive@anchorage.com).
