Skip to content

Commit a7717e5

Browse files
committed
Remove accidental commit of other changes.
1 parent 937cd91 commit a7717e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

format/formats.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func markdown(input string, theme string) (string, error) {
5454
}
5555

5656
func template(input string) (string, error) {
57-
f := termenv.TemplateFuncs(termenv.EnvColorProfile())
57+
f := termenv.TemplateFuncs(termenv.ColorProfile())
5858
t, err := tpl.New("tpl").Funcs(f).Parse(input)
5959
if err != nil {
6060
return "", fmt.Errorf("unable to parse template: %w", err)

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var (
2828
var bubbleGumPink = lipgloss.NewStyle().Foreground(lipgloss.Color("212"))
2929

3030
func main() {
31-
lipgloss.SetColorProfile(termenv.NewOutput(os.Stderr).EnvColorProfile())
31+
lipgloss.SetColorProfile(termenv.NewOutput(os.Stderr).Profile)
3232

3333
if Version == "" {
3434
if info, ok := debug.ReadBuildInfo(); ok && info.Main.Sum != "" {

0 commit comments

Comments
 (0)