@matchain/matchid-sdk-react 0.1.53-alpha.26 → 0.1.53-alpha.27
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.
- package/dist/{chunk-L6N4WRWG.mjs → chunk-ZPBHHXEE.mjs} +4 -4
- package/dist/{chunk-L6N4WRWG.mjs.map → chunk-ZPBHHXEE.mjs.map} +1 -1
- package/dist/components/index.js +3 -3
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +1 -1
- package/dist/hooks/api/index.js +3 -3
- package/dist/hooks/api/index.js.map +1 -1
- package/dist/hooks/api/index.mjs +1 -1
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/index.mjs +1 -1
- package/example/src/App.tsx +0 -6
- package/package.json +1 -1
|
@@ -7828,10 +7828,10 @@ function useContactSearch(keyword, options) {
|
|
|
7828
7828
|
});
|
|
7829
7829
|
}
|
|
7830
7830
|
function useContactInfo(options) {
|
|
7831
|
-
const {
|
|
7831
|
+
const { address } = useUserInfo();
|
|
7832
7832
|
return useQuery11({
|
|
7833
|
-
queryKey: ["matchid-contacts-info",
|
|
7834
|
-
enabled: !!
|
|
7833
|
+
queryKey: ["matchid-contacts-info", address],
|
|
7834
|
+
enabled: !!address,
|
|
7835
7835
|
queryFn: async () => {
|
|
7836
7836
|
return (await getContractsInfoApi()).data;
|
|
7837
7837
|
},
|
|
@@ -7931,4 +7931,4 @@ export {
|
|
|
7931
7931
|
MatchProvider,
|
|
7932
7932
|
useMatch
|
|
7933
7933
|
};
|
|
7934
|
-
//# sourceMappingURL=chunk-
|
|
7934
|
+
//# sourceMappingURL=chunk-ZPBHHXEE.mjs.map
|