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

# Control where review feedback appears in pull requests

> Display mode controls **where Qodo’s review feedback appears** in a pull request. You can choose to surface feedback as a high-level summary, inline on the relevant code, or both, depending on how your team prefers to review and fix issues.

This setting helps balance visibility vs. focus: summaries are useful for understanding the overall state of a PR, while inline comments are ideal for resolving issues directly in context.

To route each action level to a different location instead of applying one display mode to all findings, see [Control review verbosity](/code-review/review-verbosity).

Example:

```toml theme={null}
comments_location_policy = "both"
```

Supported values:

* **`summary`** Feedback appears only in the **Conversation** tab. Best for reviewing the overall impact and prioritization of findings.
* **`inline`** Feedback appears only in the **Files changed** view. Best for fixing issues directly next to the affected code.
* **`both`** Feedback appears in both the summary and inline views. **(default)**

Summary example:

<Frame>
  <img src="https://mintcdn.com/qodo/mMoojT-4HSoGCkSz/images/code-review/code-review-findings-conversation.png?fit=max&auto=format&n=mMoojT-4HSoGCkSz&q=85&s=dc3665c60c4ffd6cc8b353fbb0e9c835" alt="Code Review by Qodo showing findings listed in the pull request conversation tab" width="730" height="663" data-path="images/code-review/code-review-findings-conversation.png" />
</Frame>

Inline example:

<Frame>
  <img src="https://mintcdn.com/qodo/mMoojT-4HSoGCkSz/images/code-review/code-review-findings-inline.png?fit=max&auto=format&n=mMoojT-4HSoGCkSz&q=85&s=b5e23a215d7fb9de17e6b40b49c14ef3" alt="Code Review by Qodo showing a finding as an inline comment anchored to changed lines in the files tab" width="1098" height="518" data-path="images/code-review/code-review-findings-inline.png" />
</Frame>
