Skip to content

Commit

Permalink
Merge pull request #7231 from SalesforceFoundation/feature/250__ge-ac…
Browse files Browse the repository at this point in the history
…cessibity-issue

W-12536493 - Fix Gift Entry accessibility issue with ‘Add Allocation’ button
  • Loading branch information
daniel-fuller authored Mar 18, 2024
2 parents f535597 + 582eed9 commit 0b87f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/utilCommon/utilCommon.js
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ const nonePicklistOption = () => {
return createPicklistOption(commonLabelNone, commonLabelNone);
}

const asyncInterval = async (callback, milliseconds, maxNumberOfIntervals = 5) => {
const asyncInterval = async (callback, milliseconds, maxNumberOfIntervals = 20) => {
return new Promise((resolve, reject) => {
const intervalId = setInterval(async () => {
if (await callback()) {
Expand Down

0 comments on commit 0b87f25

Please sign in to comment.