diff --git a/CHANGELOG.md b/CHANGELOG.md
index 25258db5..3b12e651 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,23 @@
## Changelog
+### Unreleased
+
+- Don't show proposals tab in user profile
+- Show treasury balance upto two decimal places only
+- Don't re-render header everytime we switch tab
+- Show link to parent repo in case of fork repo
+
+### v3.1.0 - 2nd Dec 2024
+
+- Add button for Member Dashboard in public view (if member) and public view in Member dashboard
+- Improve the dao dashboard and some other minor improvements
+- Fix overflow of voting chart in dao creation step
+- Sanitize dao names before posting the transaction
+
+### v3.0.0 - 2nd Dec 2024
+
+- Implement the new dao creation and proposal workflows
+
### v2.2.2 - 3rd Sep 2024
- Fix missing apiClient in getUser and getRepository methods
diff --git a/components/account/DaoTreasuryStats.js b/components/account/DaoTreasuryStats.js
index 8cd942bc..3ece2022 100644
--- a/components/account/DaoTreasuryStats.js
+++ b/components/account/DaoTreasuryStats.js
@@ -14,8 +14,12 @@ function DaoTreasuryStats({ dao, className = "", getBalance, advanceUser }) {
const balance = await getBalance(cosmosBankApiClient, dao.address);
setTreasuryBalance(
advanceUser === true
- ? balance + " " + process.env.NEXT_PUBLIC_ADVANCE_CURRENCY_TOKEN
- : balance / 1000000 + " " + process.env.NEXT_PUBLIC_CURRENCY_TOKEN
+ ? balance.toFixed(2) +
+ " " +
+ process.env.NEXT_PUBLIC_ADVANCE_CURRENCY_TOKEN
+ : (balance / 1000000).toFixed(2) +
+ " " +
+ process.env.NEXT_PUBLIC_CURRENCY_TOKEN
);
}
initBalance();
diff --git a/components/account/daoHeader.js b/components/account/daoHeader.js
index ba47c37f..b611f882 100644
--- a/components/account/daoHeader.js
+++ b/components/account/daoHeader.js
@@ -117,7 +117,6 @@ function AccountDaoHeader(props) {
)}
- {/* Add the treasury stats component */}