Skip to content

Commit

Permalink
Removed : string from variable assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
skbhagat0502 authored Oct 28, 2023
1 parent a46e5b5 commit d30ef22
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/screens/OrganizationDashboard/OrganizationDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<
Expand Down

0 comments on commit d30ef22

Please sign in to comment.