Some URLs generated by Realm do not follow the standard URL schema

We have run into several cases where URLs generated by Realm do not follow the standard URL schema. Specifically Realm appends query strings to the end of URLs even when a URL fragment (#) is present. This is causing issues with several frontend routing solutions that expect standards compliant URLs.

URL Structure: URL - Wikipedia

Email confirmation and reset password links are the specific cases we ran into.

This is the URL generated by Realm:
“…site.com/#auth/confirm-user?token=12345”

This would be the correct URL structure:
“…site.com?token=12345#auth/confirm-user”

Can we expect this to be fixed anytime soon or should we work around this on our end? Thanks!