Config Flow update title

Hi, I’ve implemented config flow for my component (ICS) and it’s working fine apart from one little detail.

I can set the title of the setup during the initial setup
async_create_entry(title="here it goes", data=user_input)
This title will be shown on the configuration overview: “ICS: here it goes”

but once i run the options flow (modifying the entity) and submit it
async_create_entry(title="different title", data=user_input)
it’ll still show up as “ICS: here it goes”

Is this intended behavior?
Thanks in advance, JKW