From 086755d713447ff83acac5b23b245b54989b29fc Mon Sep 17 00:00:00 2001 From: Rohan Chaturvedi Date: Thu, 17 Oct 2024 18:33:27 +0530 Subject: [PATCH 1/3] fix: sidebar items --- frontend/components/layout/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/layout/Sidebar.tsx b/frontend/components/layout/Sidebar.tsx index 46494dc9a..737060624 100644 --- a/frontend/components/layout/Sidebar.tsx +++ b/frontend/components/layout/Sidebar.tsx @@ -183,7 +183,7 @@ const Sidebar = () => {
- {links.slice(0, 5).map((link) => ( + {links.slice(0, 4).map((link) => ( Date: Thu, 17 Oct 2024 18:35:22 +0530 Subject: [PATCH 2/3] fix: command pallete link --- frontend/components/common/CommandPalette.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/common/CommandPalette.tsx b/frontend/components/common/CommandPalette.tsx index 2c2383648..afb496a64 100644 --- a/frontend/components/common/CommandPalette.tsx +++ b/frontend/components/common/CommandPalette.tsx @@ -94,7 +94,7 @@ const CommandPalette: React.FC = () => { name: 'Go to Members', description: 'Manage organization members', icon: , - action: () => handleNavigation(`/${activeOrganisation?.name}/members`), + action: () => handleNavigation(`/${activeOrganisation?.name}/access/members`), }, { id: 'go-integrations', From 0aded1782c933df3662da61dacbc8b624f7459d5 Mon Sep 17 00:00:00 2001 From: Rohan Chaturvedi Date: Thu, 17 Oct 2024 18:37:14 +0530 Subject: [PATCH 3/3] fix: members link in emails --- backend/api/emails.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/api/emails.py b/backend/api/emails.py index e94cdf1e7..3510f4ed7 100644 --- a/backend/api/emails.py +++ b/backend/api/emails.py @@ -92,7 +92,7 @@ def send_invite_email(invite): def send_user_joined_email(invite, new_member): organisation = invite.organisation.name - members_page_link = f"{os.getenv('ALLOWED_ORIGINS')}/{organisation}/members" + members_page_link = f"{os.getenv('ALLOWED_ORIGINS')}/{organisation}/access/members" owner = OrganisationMember.objects.get( organisation=invite.organisation, role__name="Owner", deleted_at=None