Encountering an issue where the operator '+' cannot be applied to types 'Number' and '1'
buildQuerySpec() {
return {
PageSize: this.paging.PageCount,
CurrentPage: this.paging.PageIndex + 1,
MaxSize: '',
Filters: this.filter,
OrderFields: [],
IsDescending: false
};
}
What could be causing the error with
CurrentPage: this.paging.PageIndex + 1,
The value of pageIndex is a number, no clear indication as to what may be the issue.