Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 2514aa7

Browse files
committed
Remove unused fragment arguments
1 parent f6bcf5b commit 2514aa7

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

lib/views/issue-detail-view.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,7 @@ export default createRefetchContainer(BareIssueDetailView, {
225225
$timelineCursor: String,
226226
) {
227227
repository: node(id: $repoId) {
228-
...issueDetailView_repository @arguments(
229-
timelineCount: $timelineCount,
230-
timelineCursor: $timelineCursor
231-
)
228+
...issueDetailView_repository
232229
}
233230
234231
issue: node(id: $issueishId) {

lib/views/pr-detail-view.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -426,10 +426,7 @@ export default createRefetchContainer(BarePullRequestDetailView, {
426426
$checkRunCursor: String
427427
) {
428428
repository: node(id: $repoId) {
429-
...prDetailView_repository @arguments(
430-
timelineCount: $timelineCount
431-
timelineCursor: $timelineCursor
432-
)
429+
...prDetailView_repository
433430
}
434431
435432
pullRequest: node(id: $issueishId) {

0 commit comments

Comments
 (0)