diff --git a/internal/ui/render/blocks_test.go b/internal/ui/render/blocks_test.go index 60b9de9c..b2560343 100644 --- a/internal/ui/render/blocks_test.go +++ b/internal/ui/render/blocks_test.go @@ -4,30 +4,9 @@ import ( "strings" "testing" - "github.com/indaco/herald" - "github.com/mark3labs/kit/internal/ui/style" ) -// testTypography creates a herald Typography for tests. -func testTypography(theme style.Theme) *herald.Typography { - return herald.New( - herald.WithPalette(herald.ColorPalette{ - Primary: theme.Primary, - Secondary: theme.Secondary, - Tertiary: theme.Info, - Accent: theme.Accent, - Highlight: theme.Highlight, - Muted: theme.Muted, - Text: theme.Text, - Surface: theme.Background, - Base: theme.CodeBg, - }), - herald.WithAlertLabel(herald.AlertTip, ""), - herald.WithAlertIcon(herald.AlertTip, ""), - ) -} - func TestHighlightFileTokens(t *testing.T) { theme := style.DefaultTheme()