thank you Tore - the problem was with the samesite feature on the backend - this code resolved the issue
builder.Services.ConfigureApplicationCookie(options => { options.Cookie.SameSite = SameSiteMode.None; });