Skip to content

Commit

Permalink
Remove redundant log
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Sverdlov <[email protected]>
  • Loading branch information
sverdlov93 committed Sep 22, 2024
1 parent 8c75538 commit 193d6b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion general/ai/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func HowCmd(c *cli.Context) error {

// Ask the user to agree to the terms and conditions. If the user does not agree, the command will not proceed.
// Ask this only once per user unless the terms are updated.
if agreed, err := handleAiTermsAgreement(); err != nil || agreed != true {
if agreed, err := handleAiTermsAgreement(); err != nil || !agreed {
return err
}

Expand Down

0 comments on commit 193d6b3

Please sign in to comment.