Skip to content

Commit

Permalink
fix: set initial value of isRemoteExtensionLoading to true (#4296)
Browse files Browse the repository at this point in the history
Signed-off-by: donniean <donniean1@gmail.com>
  • Loading branch information
donniean committed Sep 18, 2024
1 parent e12a468 commit a96de0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/Pages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const baseRoutes: RouteObject[] = [
const homePage = globals.config.homePage || '/dashboard';

function usePages() {
const [isRemoteExtensionLoading, setIsRemoteExtensionLoading] = useState(false);
const [isRemoteExtensionLoading, setIsRemoteExtensionLoading] = useState(true);

useEffect(() => {
setIsRemoteExtensionLoading(true);
Expand Down

0 comments on commit a96de0a

Please sign in to comment.