Browse Source

Revert "fix(workflow): Handle filtering release list by date" (#34876)

Scott Cooper 2 years ago
parent
commit
ac52bd6409
1 changed files with 1 additions and 5 deletions
  1. 1 5
      static/app/views/releases/list/index.tsx

+ 1 - 5
static/app/views/releases/list/index.tsx

@@ -82,17 +82,13 @@ class ReleasesList extends AsyncView<Props, State> {
 
   getEndpoints(): ReturnType<AsyncView['getEndpoints']> {
     const {organization, location} = this.props;
-    const {statsPeriod, start, end, utc} = location.query;
+    const {statsPeriod} = location.query;
     const activeSort = this.getSort();
     const activeStatus = this.getStatus();
 
     const query = {
       ...pick(location.query, ['project', 'environment', 'cursor', 'query', 'sort']),
       summaryStatsPeriod: statsPeriod,
-      statsPeriod,
-      start,
-      end,
-      utc,
       per_page: 20,
       flatten: activeSort === ReleasesSortOption.DATE ? 0 : 1,
       adoptionStages: 1,