Skip to content

Commit 3018790

Browse files
fix: lint
1 parent 7237d98 commit 3018790

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cmd/domains/domains_list.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ func newDomainsListCommand() *cli.Command {
5959
env = name
6060
} else {
6161
env = *d.EnvironmentID
62-
if len(env) > 8 {
63-
env = env[:8]
64-
}
62+
if len(env) > 8 {
63+
env = env[:8]
64+
}
6565
}
6666
}
6767
tableData = append(tableData, []string{d.ID, d.Name, env, icon + " " + d.Status, msg})

0 commit comments

Comments
 (0)