Ember Component Rerender not happening with new Promise

I wrote small ember components for my application. The component will be rendered with the data obtained from the api response.

The component values will be changed with the API response.But the old data(data befor saving) still remains on the page even after the API returns the result It shows both the old data as well as the new data

I want to rerender the component on every API call response so that it will be show the correct logic Could you help how could this could be done in Ember component?