diff --git a/cmd/terraform_apply.go b/cmd/terraform_apply.go index 29231a6a..ff55488a 100644 --- a/cmd/terraform_apply.go +++ b/cmd/terraform_apply.go @@ -141,7 +141,6 @@ func TerraformApplyImpl(ctx context.Context, cmd *cobra.Command, oi OvermindInst return uuid.Nil, fmt.Errorf("failed to identify change: %w", err) } - // m.startingChange <- m.startingChangeSnapshot.StartMsg() startingChangeSnapshotSpinner, _ := pterm.DefaultSpinner.WithWriter(multi.NewWriter()).Start("Starting Change") startStream, err := client.StartChange(ctx, &connect.Request[sdp.StartChangeRequest]{ diff --git a/cmd/theme.go b/cmd/theme.go index 567e2add..7d7dfd4e 100644 --- a/cmd/theme.go +++ b/cmd/theme.go @@ -376,19 +376,12 @@ func OkSymbol() string { return "✔︎" } -func RenderOk() string { - return lipgloss.NewStyle().Foreground(ColorPalette.BgSuccess).Render(OkSymbol()) -} - func UnknownSymbol() string { if IsConhost() { return "??" } return "?" } -func RenderUnknown() string { - return lipgloss.NewStyle().Foreground(ColorPalette.BgWarning).Render(UnknownSymbol()) -} func ErrSymbol() string { if IsConhost() { @@ -396,9 +389,6 @@ func ErrSymbol() string { } return "✗" } -func RenderErr() string { - return lipgloss.NewStyle().Foreground(ColorPalette.BgDanger).Render(ErrSymbol()) -} func IndentSymbol() string { if IsConhost() {