Help output for repo clone shows wrong argument order

Running glab repo clone --help shows this usage:

USAGE
  glab repo clone <repo> [<dir>] [-- [<gitflags>...]] [flags]

This is wrong, because the glab flags need to come before the gitflags. Correct should be something like this:

USAGE
  glab repo clone <repo> [flags] [<dir>] [-- [<gitflags>...]]