Skip to content

Commit 81618ed

Browse files
nalves599anees-asghar
authored andcommitted
Add edit profile
1 parent 40f8d01 commit 81618ed

File tree

11 files changed

+679
-10
lines changed

11 files changed

+679
-10
lines changed

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@types/country-list": "^2.1.4",
1213
"@types/node": "20.5.0",
1314
"@types/react": "18.2.20",
1415
"@types/react-dom": "18.2.7",
1516
"autoprefixer": "10.4.15",
17+
"country-list": "^2.3.0",
1618
"eslint": "8.47.0",
1719
"eslint-config-next": "^14.1.0",
1820
"lucide-react": "^0.469.0",
@@ -25,6 +27,7 @@
2527
"react": "18.2.0",
2628
"react-confetti": "^6.2.2",
2729
"react-dom": "18.2.0",
30+
"react-hook-form": "^7.54.2",
2831
"react-qr-code": "^2.0.12",
2932
"react-social-icons": "^6.18.0",
3033
"react-use": "^17.6.0",

src/app/(authenticated)/profile/achievements/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export default async function Achievements() {
3838
Total points:{" "}
3939
{userAchievements?.reduce((acc, a) => acc + a.value, 0) || 0}
4040
</span>
41-
{/* TODO: Add bullshit text, ask ChatGPT or Copilot */}
4241
</div>
4342
{sortedKinds.map((k) => (
4443
<GridList key={k} title={humanizeAchivementKind(k)}>

0 commit comments

Comments
 (0)