Skip to content

Commit

Permalink
fix(web): App uses the Suspense API while loading the selected product
Browse files Browse the repository at this point in the history
  • Loading branch information
imobachgs committed Jan 9, 2025
1 parent d4771bd commit a0dc904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function App() {
const location = useLocation();
const { isBusy, phase } = useInstallerStatus({ suspense: true });
const { connected, error } = useInstallerClientStatus();
const { selectedProduct, products } = useProduct();
const { selectedProduct, products } = useProduct({ suspense: true });
const { language } = useInstallerL10n();
const { password: isRootPasswordDefined, sshkey: rootSSHKey } = useRootUser();
useL10nConfigChanges();
Expand Down

0 comments on commit a0dc904

Please sign in to comment.