Skip to content

Commit 17eb2bb

Browse files
author
nate smith
committed
rebase strife
1 parent aac0c6d commit 17eb2bb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pkg/cmd/issue/shared/frecent.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"time"
1111

1212
"github.com/AlecAivazis/survey/v2"
13-
"github.com/cli/cli/api"
14-
"github.com/cli/cli/internal/config"
15-
"github.com/cli/cli/internal/ghrepo"
16-
"github.com/cli/cli/pkg/prompt"
13+
"github.com/cli/cli/v2/api"
14+
"github.com/cli/cli/v2/internal/config"
15+
"github.com/cli/cli/v2/internal/ghrepo"
16+
"github.com/cli/cli/v2/pkg/prompt"
1717
"gopkg.in/yaml.v3"
1818
)
1919

pkg/cmd/issue/view/view.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func viewRun(opts *ViewOptions) error {
8484
}
8585
if opts.IO.CanPrompt() && opts.SelectorArg == "" {
8686
baseRepo, err := opts.BaseRepo()
87-
issueNumber, err := shared.SelectFrecent(httpClient, baseRepo)
87+
issueNumber, err := issueShared.SelectFrecent(httpClient, baseRepo)
8888
if err != nil {
8989
return err
9090
}
@@ -105,7 +105,7 @@ func viewRun(opts *ViewOptions) error {
105105
return err
106106
}
107107

108-
err = shared.UpdateFrecent(issue.Number)
108+
err = issueShared.UpdateFrecent(issue.Number)
109109
if err != nil {
110110
// TODO just warn or ignore or whatever
111111
return err

0 commit comments

Comments
 (0)