Skip to content

Commit

Permalink
fixes current dao provider prop, nav item and bump sdk version in pac…
Browse files Browse the repository at this point in the history
…kage.json
  • Loading branch information
skuhlmann committed Oct 5, 2023
1 parent a90ff6a commit f4fd2e1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
"preview": "vite preview"
},
"dependencies": {
"@daohaus/abis": "^0.2.3",
"@daohaus/connect": "^0.2.3",
"@daohaus/connect-context": "^0.2.3",
"@daohaus/contract-utils": "^0.2.3",
"@daohaus/form-builder": "^0.2.3",
"@daohaus/form-builder-base": "^0.2.3",
"@daohaus/keychain-utils": "^0.2.3",
"@daohaus/moloch-v3-data": "^0.2.3",
"@daohaus/moloch-v3-fields": "^0.2.3",
"@daohaus/moloch-v3-hooks": "^0.2.3",
"@daohaus/moloch-v3-legos": "^0.2.3",
"@daohaus/moloch-v3-macro-ui": "^0.2.3",
"@daohaus/profile-data": "^0.2.3",
"@daohaus/tx-builder": "^0.2.3",
"@daohaus/ui": "^0.2.3",
"@daohaus/utils": "^0.2.3",
"@daohaus/abis": "^0.3.0",
"@daohaus/connect": "^0.3.0",
"@daohaus/connect-context": "^0.3.0",
"@daohaus/contract-utils": "^0.3.0",
"@daohaus/form-builder": "^0.3.0",
"@daohaus/form-builder-base": "^0.3.0",
"@daohaus/keychain-utils": "^0.3.0",
"@daohaus/moloch-v3-data": "^0.3.0",
"@daohaus/moloch-v3-fields": "^0.3.0",
"@daohaus/moloch-v3-hooks": "^0.3.0",
"@daohaus/moloch-v3-legos": "^0.3.0",
"@daohaus/moloch-v3-macro-ui": "^0.3.0",
"@daohaus/profile-data": "^0.3.0",
"@daohaus/tx-builder": "^0.3.0",
"@daohaus/ui": "^0.3.0",
"@daohaus/utils": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
Expand Down
3 changes: 2 additions & 1 deletion src/components/layout/DaoContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const Dao = ({

const navLinks = useMemo(() => {
let baseLinks = [
{ label: "Claim", href: `/${routePath}/claim` },
{ label: "Home", href: `/` },
{ label: "DAO", href: `/${routePath}` },
{ label: "Safes", href: `/${routePath}/safes` },
{ label: "Proposals", href: `/${routePath}/proposals` },
Expand Down Expand Up @@ -82,6 +82,7 @@ const Dao = ({
}
>
<CurrentDaoProvider
userAddress={address}
targetDao={{
daoChain: daoChain,
daoId: daoId,
Expand Down

0 comments on commit f4fd2e1

Please sign in to comment.