openxiangda 1.0.150 → 1.0.151

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6704,12 +6704,15 @@ var useRuntimeAuth = () => {
6704
6704
  },
6705
6705
  [logout, redirectToLogin]
6706
6706
  );
6707
- return {
6708
- logout,
6709
- logoutAndRedirect,
6710
- redirectToLogin,
6711
- resolveLoginUrl: resolveLoginUrl2
6712
- };
6707
+ return useMemo11(
6708
+ () => ({
6709
+ logout,
6710
+ logoutAndRedirect,
6711
+ redirectToLogin,
6712
+ resolveLoginUrl: resolveLoginUrl2
6713
+ }),
6714
+ [logout, logoutAndRedirect, redirectToLogin, resolveLoginUrl2]
6715
+ );
6713
6716
  };
6714
6717
  var RuntimeAuthGuard = ({
6715
6718
  children,