From d30ef220a02042e7e86cb59bd288a816a8cb1238 Mon Sep 17 00:00:00 2001 From: Sandeep Kumar Bhagat Date: Sun, 29 Oct 2023 02:54:05 +0530 Subject: [PATCH] Removed : string from variable assignment. --- .../OrganizationDashboard/OrganizationDashboard.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/screens/OrganizationDashboard/OrganizationDashboard.tsx b/src/screens/OrganizationDashboard/OrganizationDashboard.tsx index 9c14386777..97323bdcb6 100644 --- a/src/screens/OrganizationDashboard/OrganizationDashboard.tsx +++ b/src/screens/OrganizationDashboard/OrganizationDashboard.tsx @@ -36,11 +36,11 @@ function organizationDashboard(): JSX.Element { document.title = t('title'); const currentUrl = window.location.href.split('=')[1]; const organizationId = getOrganizationId(window.location.href); - const peopleLink: string = `/orgpeople/id=${organizationId}`; - const postsLink: string = `/orgpost/id=${organizationId}`; - const eventsLink: string = `/orgevents/id=${organizationId}`; - const blockUserLink: string = `/blockuser/id=${organizationId}`; - const requestLink: string = '/requests'; + const peopleLink = `/orgpeople/id=${organizationId}`; + const postsLink = `/orgpost/id=${organizationId}`; + const eventsLink = `/orgevents/id=${organizationId}`; + const blockUserLink = `/blockuser/id=${organizationId}`; + const requestLink = '/requests'; const history = useHistory(); const [upcomingEvents, setUpcomingEvents] = useState<