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

# endstate.chipReplacements.waitUntilSettled

> Waits until the replacement is confirmed or has failed.

```ts theme={null}
waitUntilSettled(unitId: string, replacementId: string, options?: PollOptions): Promise<ChipReplacement>
```

This helper polls an existing read until it settles; it issues no endpoint of its own.

## Example

```ts theme={null}
const result = await endstate.chipReplacements.waitUntilSettled(unit.id, replacement.id);
```
