Skip to content

Commit 835cfe5

Browse files
authored
Merge pull request #56 from HausDAO/dev
Trigger deploy
2 parents 09a5a7a + 50f7759 commit 835cfe5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/app/dao/[chainid]/[daoid]/dao-home.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ export default function DaoHome() {
1717
daoid: params.daoid,
1818
});
1919

20+
console.log("params", params);
21+
2022
if (!isLoaded || isDaoLoading) {
2123
return (
2224
<div className="h-full w-full flex items-center justify-center">

src/hooks/useDao.ts

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ export const useDao = ({
3333
);
3434
}
3535

36+
console.log("useDao chainid daoid", chainid, daoid);
37+
3638
const { data, ...rest } = useQuery<{ dao: DaoItem }>({
3739
queryKey: [`get-dao-${chainid}-${daoid}`],
3840
enabled: Boolean(chainid && daoid),

0 commit comments

Comments
 (0)