Skip to content

Commit 6d1a25f

Browse files
committed
fixes
1 parent 8a8aa27 commit 6d1a25f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/quickbooks/actions/search-accounts/search-accounts.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default {
5252

5353
let maxResults = "";
5454
if (this.maxResults) {
55-
maxResults = ` MAXRESULTS ${this.maxResults}` || "";
55+
maxResults = ` MAXRESULTS ${this.maxResults}`;
5656
}
5757

5858
const query = `select * from Account where ${this.whereClause}${orderClause}${startPosition}${maxResults}`;

components/quickbooks/actions/search-customers/search-customers.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default {
5252

5353
let maxResults = "";
5454
if (this.maxResults) {
55-
maxResults = ` MAXRESULTS ${this.maxResults}` || "";
55+
maxResults = ` MAXRESULTS ${this.maxResults}`;
5656
}
5757

5858
const query = `select * from Customer where ${this.whereClause}${orderClause}${startPosition}${maxResults}`;

0 commit comments

Comments
 (0)