From e4603b96ea6e534e04236152f6ca2c92a825dc18 Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 30 Jan 2026 01:35:13 +0000 Subject: [PATCH] chore(dev): remove unused cellStyle and lipgloss import Co-Authored-By: Claude Opus 4.5 --- cmd/dev/dev.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmd/dev/dev.go b/cmd/dev/dev.go index 98f5663..f59da43 100644 --- a/cmd/dev/dev.go +++ b/cmd/dev/dev.go @@ -29,7 +29,6 @@ package dev import ( - "github.com/charmbracelet/lipgloss" "github.com/host-uk/core/cmd/shared" "github.com/spf13/cobra" ) @@ -45,9 +44,8 @@ var ( repoNameStyle = shared.RepoNameStyle ) -// Table styles for status display (with padding for table cells) +// Table styles for status display (extends shared styles with cell padding) var ( - cellStyle = lipgloss.NewStyle().Padding(0, 1) dirtyStyle = shared.GitDirtyStyle.Padding(0, 1) aheadStyle = shared.GitAheadStyle.Padding(0, 1) cleanStyle = shared.GitCleanStyle.Padding(0, 1)