From 194f384ee9b447db284939a1f4e063974bf022f9 Mon Sep 17 00:00:00 2001 From: Ankur1493 Date: Tue, 14 May 2024 21:07:29 +0530 Subject: [PATCH 1/2] bug on running the docker-compose up --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 4abcf7930..9e1f1b0fd 100644 --- a/package.json +++ b/package.json @@ -101,7 +101,6 @@ "@typescript-eslint/eslint-plugin": "^6.20.0", "@typescript-eslint/parser": "^6.20.0", "autoprefixer": "^10.0.1", - "eslint": "^8.56.0", "eslint-plugin-storybook": "^0.8.0", "husky": "^9.0.7", @@ -109,6 +108,6 @@ "prettier": "^3.2.4", "prisma": "^5.6.0", "tailwindcss": "^3.3.0", - "ts-node": "^10.9.2", + "ts-node": "^10.9.2" } } From 6a9233daeff334beb4a7286043bfe92a2f371b29 Mon Sep 17 00:00:00 2001 From: Ankur1493 Date: Wed, 15 May 2024 20:15:48 +0530 Subject: [PATCH 2/2] added questions page in dropdown --- src/components/profile-menu/ProfileDropdown.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/components/profile-menu/ProfileDropdown.tsx b/src/components/profile-menu/ProfileDropdown.tsx index 88cc5e178..060c6503c 100644 --- a/src/components/profile-menu/ProfileDropdown.tsx +++ b/src/components/profile-menu/ProfileDropdown.tsx @@ -1,7 +1,13 @@ 'use client'; import Link from 'next/link'; -import { BookmarkIcon, HistoryIcon, LogOutIcon, User2Icon } from 'lucide-react'; +import { + BookmarkIcon, + HistoryIcon, + LogOutIcon, + User2Icon, + Bird, +} from 'lucide-react'; import { DropdownMenu, DropdownMenuContent, @@ -26,6 +32,11 @@ const ProfileDropdown = () => { icon: , label: 'Bookmarks', }, + { + href: '/questions', + icon: , + label: 'Questions', + }, ]; return (