Skip to content

Commit

Permalink
Merge pull request #284 from ShubhamParkhi/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybuidl authored Jul 2, 2024
2 parents fcfa95d + c1cb6fd commit 54b4c9f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/pages/treasury.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ import styles from "./styles/treasury.module.css";
import TreasuryReportsImage from "src/assets/svgs/treasury-reports.svg";

const MONTHS = [
{
month: "June",
year: "2024",
treasuryReport: "QmcTr9t2iqF6LWWAe34amdFS3WxuvUHvauEU6HpgZuMowW/monthly-portfolio-snapshot-2024-june-2024-1-.pdf",
riskReport: "QmPfeTLgPJnsDEGTU5sKC2Zwm9LEHxqnasGdXsizw93cfx/june-risk-report-redefine-risk-center.-june07-01-2024.pdf",
},
{
month: "May",
year: "2024",
Expand Down Expand Up @@ -132,7 +138,7 @@ const AnyQuestions = () => {

const ReportSelection = ({ type }) => {
const [selectedYear, setSelectedYear] = useState("2024");
const [selectedMonth, setSelectedMonth] = useState("May");
const [selectedMonth, setSelectedMonth] = useState("June");

const availableYears = type === "treasuryReport"
? [...new Set(MONTHS.map((m) => m.year))].sort().reverse()
Expand Down

0 comments on commit 54b4c9f

Please sign in to comment.