TMSFNCWebBrowser.Navigate not working when component is created at runtime

I recently updated the TMS FNC Core Components. After that I have some problems with the TMSFNCWebBrowser:

When I create a TMSFNCWebBrowser in the code during runtime, the navigate() function does not work right away. Instead of loading the requested URL, the default page ("EDGE Chromium is succesfully initialized") is loaded.
When I use the navigate functions again manually, e.g by a button click, it works without any problems.

Is this a known issue?

procedure TForm1.FormShow(Sender: TObject);
begin
  TMSFNCWebBrowser1 := TTMSFNCWebBrowser.Create(self);
  TMSFNCWebBrowser1.Parent := self;
  TMSFNCWebBrowser1.Navigate('https://www.tmssoftware.com');
end;

The initialization procedure has changed to an asynchronous operation. Please set the property TMSFNCWebBrowser1.URL := 'https://www.tmssoftware.com'; or implement the OnInitialized event, and call the Navigate procedure there.