fix(fuzeclock): HTTPS load + spinner-first loader UX - #42
Merged
Conversation
Clicking FuzeClock failed, briefly showed a spinner, then failed again. Two bugs: - FederatedAppLoader flashed a "not found" error before the app list had loaded (deep-link/refresh: state.apps empty), then re-ran and hit the real failure. Now it stays on the spinner while the app list is loading and only errors once the list is loaded and the app is genuinely missing. - The federated remote was mixed-content: registered as http://clock.dev.local on the https FuzeFront page, and clock-app was built with an http public base. Serve clock over trusted TLS (cert-manager local CA on the clock ingress), build clock-app with an https base, and register remote_url as https://clock.dev.local/assets. (clock.dev.local added to hosts.) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
FuzeClock failed→spinner→failed. Fixed the loader to show the spinner first (no premature 'not found' before the app list loads), and fixed the actual load failure (mixed content): clock served over trusted TLS, clock-app built with an https base, remote_url registered as https. Verified remoteEntry returns 200 over https with the local-CA cert.
🤖 Generated with Claude Code