Auto Resolving the Promise showing Synchronous behavior with async true in Ember Version 4.8, but different in 5.8(showing actual async behavior)

This code behaves synchrounously. claim has appeals with relation async true. The data that comes in claim.appeals is list of Ids. There is no async await or THEN being used. This works fine in version 4.8, behaving synchronously(there is no asynchronous behaviour) but after upgrade to 5.8 it shows error beacuse the promise many should be resolved either using async/await or then, and i know its valid. But I want to have it behave same as it was in older version-4.8, where it gets auto resolved synchronously, without showing any asynchrounous behavior. How can we make this behavior in version 5.8.

This code snippet below is of MIXIN file.

Model snippet is given below. It has two models involved in it and both are of different versions(one before octane and other after it). image