Skip to content

Commit

Permalink
Clean up some unused bits
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidS-ovm committed Sep 20, 2024
1 parent acd5784 commit 071861e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion cmd/terraform_apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -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]{
Expand Down
10 changes: 0 additions & 10 deletions cmd/theme.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,29 +376,19 @@ 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() {
return "ERR"
}
return "✗"
}
func RenderErr() string {
return lipgloss.NewStyle().Foreground(ColorPalette.BgDanger).Render(ErrSymbol())
}

func IndentSymbol() string {
if IsConhost() {
Expand Down

0 comments on commit 071861e

Please sign in to comment.