Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions app/projects/[id]/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2920,12 +2920,6 @@ function RemoteSyncSection({
</div>
</div>

{isWebhookDriven && (
<p className="text-xs text-indigo-500 dark:text-indigo-400">
Repository fields are managed by the GitHub integration.
</p>
)}

{/* Same-repo info when editing form matches GitHub integration */}
{!isWebhookDriven && githubIntegration &&
repoOwner === githubIntegration.repo_owner &&
Expand Down Expand Up @@ -2976,6 +2970,12 @@ function RemoteSyncSection({
</div>
</div>

{isWebhookDriven && (
<p className="text-xs text-indigo-500 dark:text-indigo-400">
Repository fields are managed by the GitHub integration.
</p>
)}

{/* Frequency + Update mode */}
<div className="grid grid-cols-2 gap-3">
<div>
Expand Down
Loading