Something went wrong on our end. Please try again.
Created by: eseliger
After switching back to wildcard tabs, it was forgotten that before those components would not render at the same time. https://github.com/sourcegraph/sourcegraph/pull/40110 migrated to using the wildcard components directly, but forgot to port over the lazy parameter: https://github.com/sourcegraph/sourcegraph/pull/40110/files#diff-733709eadc832fc5f74d1eb476d37c6ae449569239cc0b8653f550cac409d1d1L127
I think this doesn't affect the other stuff that you wanted to address in that PR, correct @courier-new? At least I don't see why we couldn't use lazy with that new tabbing approach.
This missing parameter causes two issues:
visible
(and other, likely) URL query param and keep updating it, leading to an infinite loop of updates, freezing up the page.Closes https://github.com/sourcegraph/customer/issues/1262
Verified that the scenario described in https://github.com/sourcegraph/customer/issues/1262 doesn't happen anymore with this change.
Check out the client app preview documentation to learn more.