fix: remove duplicate URL display in fetch permission popup content area

hems and Claude created

The URL was being displayed twice - once in the header (correctly formatted)
and once in the gray content box below. Removed the content area display
since the header already shows the URL in a clean, consistent format.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

Change summary

internal/tui/components/dialogs/permissions/permissions.go | 9 --------
1 file changed, 9 deletions(-)

Detailed changes

internal/tui/components/dialogs/permissions/permissions.go 🔗

@@ -409,15 +409,6 @@ func (p *permissionDialogCmp) generateWriteContent() string {
 }
 
 func (p *permissionDialogCmp) generateFetchContent() string {
-	t := styles.CurrentTheme()
-	baseStyle := t.S().Base.Background(t.BgSubtle)
-	if pr, ok := p.permission.Params.(tools.FetchPermissionsParams); ok {
-		finalContent := baseStyle.
-			Padding(1, 2).
-			Width(p.contentViewPort.Width()).
-			Render(pr.URL)
-		return finalContent
-	}
 	return ""
 }