Skip to content

Commit e8d2e0c

Browse files
committed
Fix the API settings URL: remove the /my/ prefix
1 parent 282894b commit e8d2e0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,5 +130,5 @@ func InferSiteURL(apiURL string) string {
130130

131131
// TokenURL provides a link to where the user can find their API token.
132132
func TokenURL(apiURL string) string {
133-
return fmt.Sprintf("%s%s", InferSiteURL(apiURL), "/my/settings/api_cli")
133+
return fmt.Sprintf("%s%s", InferSiteURL(apiURL), "/settings/api_cli")
134134
}

0 commit comments

Comments
 (0)