Welcome to the React feedback portal. We’re happy you’re here! If you have feedback on how to improve the React, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
It would make sense to me to have the properties passed to customAggregate be the same as those that are passed to groupCaptionTemplate and groupFooterTemplate. (Breaking Change reference: https://ej2.syncfusion.com/react/documentation/release-notes/18.4.47/?type=all#grid)
Specifically, as the release notes mention, the groupKey.
```
// This is rough untested TypeScript code
const myCustomAggregateFunction= (props: any): any => {
const aggregate1 = getAggregateFromSomewhere(props.groupKey); // Fails
}
```