Skip to content

Commit

Permalink
fix bug (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
yohamta authored Sep 20, 2023
1 parent 84bcb19 commit 55521af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (cfg *Config) GetAPIBaseURL() string {
if isHTTPS {
schema = "https"
}
return fmt.Sprintf("%s://%s:%d%s", schema, cfg.Host, cfg.Port, "/api/v1/")
return fmt.Sprintf("%s://%s:%d%s", schema, cfg.Host, cfg.Port, "/api/v1")
}

func loadEnvs() {
Expand Down

0 comments on commit 55521af

Please sign in to comment.