Skip to content

Commit

Permalink
Making maxTransactionGroupsExceeded false by default (#150458)
Browse files Browse the repository at this point in the history
Relates to #146648.

`maxTransactionGroupsExceeded` is currently `true` by default which is
causing a flickering in transactions page specifically for the table,
where we can see the callout for some milliseconds and then, after
getting results from endpoint, disappears.

### before this change


https://user-images.githubusercontent.com/1313018/217316916-e6434f4a-c4e6-4e12-ba2b-5f5ab0011984.mov
  • Loading branch information
yngrdyn authored Feb 8, 2023
1 parent 67d1a46 commit a2df4d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const INITIAL_STATE: InitialState = {
requestId: '',
mainStatisticsData: {
transactionGroups: [],
maxTransactionGroupsExceeded: true,
maxTransactionGroupsExceeded: false,
transactionOverflowCount: 0,
transactionGroupsTotalItems: 0,
},
Expand Down

0 comments on commit a2df4d6

Please sign in to comment.