Skip to content

Commit

Permalink
chore: change debug flags to false
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanCapistrano committed Jul 15, 2023
1 parent 98d50b8 commit 934f95d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ simple way to write commits following the Conventional Commits
fmt.Printf("gbc version %s\n", GBC_VERSION)
} else {
commitTypeMenu := gocliselect.NewMenu("Commit type?")
gbcEmojis := config.GetEmojis(SETTINGS_FILE_NAME, true)
enableEmojis := config.EnableEmojis(SETTINGS_FILE_NAME, true)
gbcEmojis := config.GetEmojis(SETTINGS_FILE_NAME, false)
enableEmojis := config.EnableEmojis(SETTINGS_FILE_NAME, false)

commitTypeMenu.AddItem(
emoji.Sprintf("%sFeature", gbcEmojis.Feat),
Expand Down

0 comments on commit 934f95d

Please sign in to comment.