This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Description
Got the error "Could not find module jquery imported from ember-ajax/utils/ajax" while executing the below function call.
return this.ajax
.request('/api/token', {
method: 'POST',
// url: '/api/token',
data: payloadData,
})
.then((result) => {
return result.token;
})
.catch(function (error) {
console.log('Api failure', error);
});
Doing ember install @ember/jquery seems to fix this issue. Why is this fix needed ?