BUUPE/inquisitor

Apply destructuring to the apply.js class to make it more readable

vitorvicente opened this issue · 1 comments

Might be worth using destructuring here to make this more readable in the future, i.e.

Promise.all([
      loadApplicationFormConfig,
      loadUserData,
      loadGeneralSettings,
      loadUserApplication,
    ]).then(([applicationFormConfig, userData, generalSettings, userApplication]) =>
        ....
    );