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.
@@ -5933,12 +5933,15 @@ var useRuntimeAuth = () => {
5933
5933
  },
5934
5934
  [logout, redirectToLogin]
5935
5935
  );
5936
- return {
5937
- logout,
5938
- logoutAndRedirect,
5939
- redirectToLogin,
5940
- resolveLoginUrl: resolveLoginUrl2
5941
- };
5936
+ return useMemo11(
5937
+ () => ({
5938
+ logout,
5939
+ logoutAndRedirect,
5940
+ redirectToLogin,
5941
+ resolveLoginUrl: resolveLoginUrl2
5942
+ }),
5943
+ [logout, logoutAndRedirect, redirectToLogin, resolveLoginUrl2]
5944
+ );
5942
5945
  };
5943
5946
  var RuntimeAuthGuard = ({
5944
5947
  children,