From 5205d41776c9a632f4b8b5e14aee16aef421ac27 Mon Sep 17 00:00:00 2001 From: Adithya Menon R Date: Sat, 3 Jan 2026 19:05:19 +0530 Subject: [PATCH 1/5] fix: showing bounty and difficulty in issue card --- app/components/repo-components/IssueCard.tsx | 31 ++++----- app/repo/page.tsx | 71 ++++++++++---------- app/store/useRepositoryStore.ts | 6 +- 3 files changed, 51 insertions(+), 57 deletions(-) diff --git a/app/components/repo-components/IssueCard.tsx b/app/components/repo-components/IssueCard.tsx index a569814..b088da4 100644 --- a/app/components/repo-components/IssueCard.tsx +++ b/app/components/repo-components/IssueCard.tsx @@ -24,8 +24,8 @@ const IssueCard = (props: IssuesData) => { title, url, language, - // bounty, - // difficulty, + bounty, + difficulty, isClaimed, claimedByList, // multiplierActive, @@ -74,7 +74,7 @@ const IssueCard = (props: IssuesData) => {
- {/* { aria-label={`Difficulty: ${difficulty}`} > {difficulty} - */} + + + + {bounty} + {/* {multiplierActive && multiplierValue && ( {
{/*
-
- {data.fullName || data.username} + @{data.username}
- {data.username && ( -
- @{data.username} -
- )}
{currentView === 'leaderboard' && ( From 23b60ba3c29e85f352a041f0cc54f5929fcd108d Mon Sep 17 00:00:00 2001 From: Adithya Menon R Date: Sat, 3 Jan 2026 22:00:37 +0530 Subject: [PATCH 3/5] chore: added icons --- public/icons/chromadb.svg | 41 ++++++++++++++++++++++++++++++++++++++ public/icons/googleadk.svg | 10 ++++++++++ public/icons/neon.svg | 5 +++++ 3 files changed, 56 insertions(+) create mode 100644 public/icons/chromadb.svg create mode 100644 public/icons/googleadk.svg create mode 100644 public/icons/neon.svg diff --git a/public/icons/chromadb.svg b/public/icons/chromadb.svg new file mode 100644 index 0000000..62b971a --- /dev/null +++ b/public/icons/chromadb.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/icons/googleadk.svg b/public/icons/googleadk.svg new file mode 100644 index 0000000..e3b8fc3 --- /dev/null +++ b/public/icons/googleadk.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/icons/neon.svg b/public/icons/neon.svg new file mode 100644 index 0000000..99a4811 --- /dev/null +++ b/public/icons/neon.svg @@ -0,0 +1,5 @@ + + + + + From bca79bc525e23bae9247865ed4b4aa765ed4c264 Mon Sep 17 00:00:00 2001 From: Adithya Menon R Date: Sat, 3 Jan 2026 22:07:15 +0530 Subject: [PATCH 4/5] fix: fixed bot commands --- app/bot-commands/devpool-docs.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/bot-commands/devpool-docs.tsx b/app/bot-commands/devpool-docs.tsx index b61d00f..6f8202f 100644 --- a/app/bot-commands/devpool-docs.tsx +++ b/app/bot-commands/devpool-docs.tsx @@ -177,10 +177,10 @@ const DevPoolDocs = () => {
{[ - { cmd: '/bug', desc: 'Mark bug-report issues' }, - { cmd: '/impact', desc: 'Flag high-impact PRs' }, - { cmd: '/doc', desc: 'Mark documentation PRs' }, - { cmd: '/test', desc: 'Mark testing PRs' }, + { cmd: '/bug @username', desc: 'Mark bug-report issues' }, + { cmd: '/impact @username', desc: 'Flag high-impact PRs' }, + { cmd: '/doc @username', desc: 'Mark documentation PRs' }, + { cmd: '/test @username', desc: 'Mark testing PRs' }, ].map((b, i) => (
Date: Sat, 3 Jan 2026 22:34:37 +0530 Subject: [PATCH 5/5] fix: comment out live activity --- app/page.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index ebd0b78..d03cb7f 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -212,7 +212,14 @@ const Dashboard = () => { value="live-activity" className="flex-grow overflow-y-auto" > - + {/* */} +
+

+ Coming Soon +

+