From 2f9424fee048a394d768811101100fa0e075bcd4 Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sun, 11 Feb 2024 13:30:06 +0530 Subject: [PATCH 01/16] fix User Update --- src/GraphQl/Mutations/mutations.ts | 4 +- src/components/UserUpdate/UserUpdate.test.tsx | 48 ++++++++++-------- src/components/UserUpdate/UserUpdate.tsx | 50 ++++++++++++------- 3 files changed, 61 insertions(+), 41 deletions(-) diff --git a/src/GraphQl/Mutations/mutations.ts b/src/GraphQl/Mutations/mutations.ts index 0d70d585eb..5d364c27d7 100644 --- a/src/GraphQl/Mutations/mutations.ts +++ b/src/GraphQl/Mutations/mutations.ts @@ -88,7 +88,7 @@ export const UPDATE_USER_MUTATION = gql` $firstName: String $lastName: String $email: EmailAddress - $applangcode: String + $appLanguageCode: String $file: String ) { updateUserProfile( @@ -97,7 +97,7 @@ export const UPDATE_USER_MUTATION = gql` lastName: $lastName email: $email id: $id - applangcode: $applangcode + applangcode: $appLanguageCode } file: $file ) { diff --git a/src/components/UserUpdate/UserUpdate.test.tsx b/src/components/UserUpdate/UserUpdate.test.tsx index c78416e1ab..ed4a2d5062 100644 --- a/src/components/UserUpdate/UserUpdate.test.tsx +++ b/src/components/UserUpdate/UserUpdate.test.tsx @@ -92,6 +92,28 @@ describe('Testing User Update', () => { global.alert = jest.fn(); + test('should display warnings for blank form submission', async () => { + jest.spyOn(toast, 'warning'); + + render( + + + + + + + + ); + + await wait(); + + userEvent.click(screen.getByText(/Save Changes/i)); + + expect(toast.warning).toHaveBeenCalledWith('First Name cannot be blank!'); + expect(toast.warning).toHaveBeenCalledWith('Last Name cannot be blank!'); + expect(toast.warning).toHaveBeenCalledWith('Email cannot be blank!'); + }); + test('should render props and text elements test for the page component', async () => { render( @@ -114,7 +136,10 @@ describe('Testing User Update', () => { formData.lastName ); userEvent.type(screen.getByPlaceholderText(/Email/i), formData.email); - userEvent.selectOptions(screen.getByTestId('applangcode'), 'Français'); + // userEvent.selectOptions(screen.getByTestId('applangcode'), 'Français'); + expect(screen.getByRole('applangcode')).toBeInTheDocument(); + expect(screen.getByText('English')).toBeInTheDocument(); + userEvent.upload(screen.getByLabelText(/Display Image:/i), formData.image); await wait(); @@ -134,25 +159,4 @@ describe('Testing User Update', () => { expect(screen.getByPlaceholderText(/Email/i)).toBeInTheDocument(); expect(screen.getByText(/Display Image/i)).toBeInTheDocument(); }); - test('should display warnings for blank form submission', async () => { - jest.spyOn(toast, 'warning'); - - render( - - - - - - - - ); - - await wait(); - - userEvent.click(screen.getByText(/Save Changes/i)); - - expect(toast.warning).toHaveBeenCalledWith('First Name cannot be blank!'); - expect(toast.warning).toHaveBeenCalledWith('Last Name cannot be blank!'); - expect(toast.warning).toHaveBeenCalledWith('Email cannot be blank!'); - }); }); diff --git a/src/components/UserUpdate/UserUpdate.tsx b/src/components/UserUpdate/UserUpdate.tsx index 95d502f12e..13927bc81e 100644 --- a/src/components/UserUpdate/UserUpdate.tsx +++ b/src/components/UserUpdate/UserUpdate.tsx @@ -11,7 +11,7 @@ import { useLocation } from 'react-router-dom'; import { languages } from 'utils/languages'; import { toast } from 'react-toastify'; import { errorHandler } from 'utils/errorHandler'; -import { Form } from 'react-bootstrap'; +import { Dropdown, Form } from 'react-bootstrap'; import Loader from 'components/Loader/Loader'; import useLocalStorage from 'utils/useLocalstorage'; @@ -36,7 +36,7 @@ const UserUpdate: React.FC = ({ lastName: '', email: '', password: '', - applangcode: '', + appLanguageCode: '', file: '', }); @@ -56,7 +56,7 @@ const UserUpdate: React.FC = ({ firstName: data?.user?.firstName, lastName: data?.user?.lastName, email: data?.user?.email, - applangcode: data?.user?.applangcode, + appLanguageCode: data?.user?.appLanguageCode, }); } }, [data]); @@ -75,7 +75,7 @@ const UserUpdate: React.FC = ({ const firstName = formState.firstName; const lastName = formState.lastName; const email = formState.email; - const applangcode = formState.applangcode; + const appLanguageCode = formState.appLanguageCode; const file = formState.file; let toSubmit = true; if (firstName.trim().length == 0 || !firstName) { @@ -98,7 +98,7 @@ const UserUpdate: React.FC = ({ firstName, lastName, email, - applangcode, + appLanguageCode, file, }, }); @@ -109,7 +109,7 @@ const UserUpdate: React.FC = ({ lastName: '', email: '', password: '', - applangcode: '', + appLanguageCode: '', file: '', }); @@ -201,22 +201,38 @@ const UserUpdate: React.FC = ({
From afcd8940935e30c77ebf8e63ae966fcacf3513bc Mon Sep 17 00:00:00 2001 From: Shubh152 <121512095+Shubh152@users.noreply.github.com> Date: Sun, 11 Feb 2024 08:14:38 +0000 Subject: [PATCH 02/16] Update documentation --- ...AddOn_support_services_Plugin_helper.default.md | 6 +++--- ...ponents_EventCalendar_EventCalendar.ViewType.md | 4 ++-- ...nents_CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +++--- ...CheckIn_types.InterfaceAttendeeQueryResponse.md | 2 +- .../components_CheckIn_types.InterfaceModalProp.md | 6 +++--- ...mponents_CheckIn_types.InterfaceTableCheckIn.md | 10 +++++----- .../components_CheckIn_types.InterfaceTableData.md | 6 +++--- .../components_CheckIn_types.InterfaceUser.md | 6 +++--- ...apsibleDropdown.InterfaceCollapsibleDropdown.md | 4 ++-- ...mponent_IconComponent.InterfaceIconComponent.md | 8 ++++---- ...ent_LeftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +++--- ...ent_LeftDrawerEventWrapper.InterfacePropType.md | 4 ++-- ...erOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 +++++----- ...ftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +++--- ...stCard_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...rofileFieldSettings.InterfaceCustomFieldData.md | 4 ++-- ...nizationDashCards_CardItem.InterfaceCardItem.md | 14 +++++++------- ...ationScreen.InterfaceOrganizationScreenProps.md | 6 +++--- ...erAdminScreen.InterfaceSuperAdminScreenProps.md | 6 +++--- ...TableLoader_TableLoader.InterfaceTableLoader.md | 6 +++--- .../modules/components_AddOn_AddOn.md | 2 +- .../components_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ...nents_AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- .../components_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ...nents_AddOn_support_components_Action_Action.md | 2 +- ...n_support_components_MainContent_MainContent.md | 2 +- ...AddOn_support_components_SidePanel_SidePanel.md | 2 +- .../components_Advertisements_Advertisements.md | 2 +- ...s_core_AdvertisementEntry_AdvertisementEntry.md | 2 +- ..._AdvertisementRegister_AdvertisementRegister.md | 2 +- ...hangeLanguageDropdown_ChangeLanguageDropDown.md | 4 ++-- .../modules/components_CheckIn_CheckInModal.md | 2 +- .../modules/components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +++--- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...ents_CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../modules/components_ContriStats_ContriStats.md | 2 +- ...ts_CurrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...tCustomFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ..._EventRegistrantsModal_EventRegistrantsModal.md | 2 +- ...ventRegistrantsModal_EventRegistrantsWrapper.md | 2 +- .../modules/components_EventStats_EventStats.md | 2 +- .../components_EventStats_EventStatsWrapper.md | 2 +- ...mponents_EventStats_Statistics_AverageRating.md | 2 +- .../components_EventStats_Statistics_Feedback.md | 2 +- .../components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- .../components_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ...nents_LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../modules/components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...mponents_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...mponents_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...components_OrgAdminListCard_OrgAdminListCard.md | 2 +- .../components_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../modules/components_OrgListCard_OrgListCard.md | 2 +- ...mponents_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../modules/components_OrgPostCard_OrgPostCard.md | 2 +- ...ProfileFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../modules/components_OrgUpdate_OrgUpdateMocks.md | 6 +++--- ..._OrganizationCardStart_OrganizationCardStart.md | 2 +- ...components_OrganizationCard_OrganizationCard.md | 2 +- .../components_OrganizationDashCards_CardItem.md | 2 +- ...onents_OrganizationDashCards_CardItemLoading.md | 2 +- ...mponents_OrganizationDashCards_DashboardCard.md | 2 +- ...s_OrganizationDashCards_DashboardCardLoading.md | 2 +- ...onents_OrganizationScreen_OrganizationScreen.md | 2 +- .../components_PaginationList_PaginationList.md | 2 +- .../modules/components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...components_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../modules/components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...onents_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- .../components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...omponents_UserPortal_CommentCard_CommentCard.md | 2 +- ...omponents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ponents_UserPortal_DonationCard_DonationCard.md | 2 +- .../components_UserPortal_EventCard_EventCard.md | 2 +- .../modules/components_UserPortal_Login_Login.md | 2 +- ...UserPortal_OrganizationCard_OrganizationCard.md | 2 +- ...Portal_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...rtal_OrganizationSidebar_OrganizationSidebar.md | 2 +- .../components_UserPortal_PeopleCard_PeopleCard.md | 2 +- .../components_UserPortal_PostCard_PostCard.md | 2 +- ...ponents_UserPortal_PromotedPost_PromotedPost.md | 2 +- .../components_UserPortal_Register_Register.md | 2 +- ...rtal_SecuredRouteForUser_SecuredRouteForUser.md | 2 +- .../components_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...omponents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../modules/components_UserUpdate_UserUpdate.md | 2 +- ...components_UsersTableItem_UserTableItemMocks.md | 2 +- .../components_UsersTableItem_UsersTableItem.md | 2 +- ...components_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- .../components_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- .../screens_EventDashboard_EventDashboard_mocks.md | 4 ++-- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../modules/screens_MemberDetail_MemberDetail.md | 6 +++--- .../screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 8 ++++---- .../modules/screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../modules/screens_OrgSettings_OrgSettings.md | 2 +- ..._OrganizationDashboard_OrganizationDashboard.md | 2 +- ...nizationDashboard_OrganizationDashboardMocks.md | 6 +++--- ...creens_OrganizationEvents_OrganizationEvents.md | 2 +- ...creens_OrganizationPeople_OrganizationPeople.md | 2 +- .../modules/screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../modules/screens_UserPortal_Donate_Donate.md | 2 +- .../modules/screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ...reens_UserPortal_Organizations_Organizations.md | 2 +- .../modules/screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ...reens_UserPortal_UserLoginPage_UserLoginPage.md | 2 +- talawa-admin-docs/modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +++--- 131 files changed, 187 insertions(+), 187 deletions(-) diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index 31189c706c..dbe64a8dff 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 29922c23d5..e260eccfa4 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index eb47c5bd4e..67e8e0c904 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index 9ecfe473e1..6a5ca8ceed 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index 2fa711670a..21d5adbae7 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index e87af3ecc3..ddf1e55562 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 390a79948f..08536c973f 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index 877cb3ff5a..bd3c19910a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index a94bf4c9bf..521d6fedd5 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index a8669a5913..4c5e80a787 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 2323d9e1b9..97c85bfbbf 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 231bd29f60..5fcf0c3f38 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 4ba897ae0f..c7b7d20bb2 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index d1fc895d2d..959ec9f724 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index 9d46c92019..ac295ec8ac 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index 7ccadce5c2..ed7e061cc1 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index 5efc787028..5466f2fd02 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 1b6a706c65..051eb3bb1a 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index f6f3b33975..82bcabf9bb 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index e545773409..386dd58593 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index 7708f3efc0..ab6e1abefe 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index d5d4096e0d..3191310dc5 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index 2a0b34d8cf..6037949ce9 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index d6f1d0ac38..ef59abbc7c 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index 09c5ab3380..691fdbc553 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index f93d3d6b94..d557ed8576 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index af9faef144..16e56a5d98 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index c9411bcff6..a67715a33e 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 17e75d0708..c3ebbe44c9 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index 22f50c02b7..f4b6c28221 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 5a91b6e729..6b3f6dac51 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index 44f300753c..e799cd07cb 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index ccee8edbae..adb41f1af4 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index 9bee87f600..11242cfb70 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index aceaaf32f1..7c7a739b42 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 209120d33e..0fda411b2b 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 97a50ec9f6..c3a801d9e8 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 0811628058..d3d44b3212 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index 07484f6961..addb029815 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 6996074140..53a451d78c 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 2b688e769e..42496560ec 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 740b3130a9..a8ef34c4cc 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index be0467b5cb..15c2ba8e70 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index d2df808a4e..fa2ab990f5 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index a8458ded95..74a5e58ba2 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index 32d3c032d5..b2c1b2be1c 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 2278652afb..36dba47086 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index d8f65115de..84276def47 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index 2970784a82..c1595a4576 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index d6c62473e2..f51d355f3d 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index 2260ddfa76..a22603ea89 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index bc862524a0..e252c7e4b1 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index 2305d3dbad..f6d5a898e0 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index e2b5d4d9a6..9e32834db3 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index 6d0b7b40de..c4dd9fb9df 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index ae7da72814..e2c4714d4e 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index dd36c8b540..e45ff01b53 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index e7d0d13510..f2df9ee701 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 62629fd66c..95964fd966 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 3c27d00110..ce0e702ea0 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index a502f77abd..79315714bf 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index 7793777b0d..bbe9df7c40 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 128d528006..d7d1b04567 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 18bfd4460b..10542e0249 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index 3bfe921cb6..d36bf079a7 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index abd4ea5663..4411326feb 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 24633b513a..8ac17227d9 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index f3671db7f1..737c1d1fb8 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index 356df928c1..76b0429bc3 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index 1f3d0f7f15..4864f3aadf 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index e72bc4b169..bb2bc6c6e6 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index 149ddf73b5..d88bf2090b 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index c837ff6ae3..d8fc516eb3 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 4874366105..1b75aab4a0 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 48551c741d..3d03f8f74e 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 8abc38e92f..7ca9bbf451 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 2b35c78487..fcec6c6b9a 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index d4d4be6cd8..3fd96493d9 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index 1f48f3cb87..7409f46764 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 11c00f6131..562d4d462d 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 9874a5c25e..50b97c0b7b 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index f8f040f88e..a239f5e667 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 517a6d692f..26b68387bd 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 84480b9f02..0d7877551f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index 9d36774a58..7dc54b7d9d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index f40934d0f8..5dea53f433 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index c40b5fd806..4b0ef77eda 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 564eb9afa7..84efa48636 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 4b80b3969f..de5a41e327 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index c7b1e8643e..6902f8e28b 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 492e7a44c7..e3be2592af 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 6902fe678a..89c2f01108 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index a3497d6bca..c1d20c2ee9 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index 533ef95663..f7d1c1cd59 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 8ce7350f58..034e76f47b 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 7865759c03..12d8c67e3b 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index b834c74894..0dd8e1fd07 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 265a3d12ef..51e4f99c38 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index d31979578d..a941bea6b8 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 6e9f01258e..07ae5df9bc 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index 85305b69e0..8e3159f9d5 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index c1e49109f4..856ae9bde4 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index f35bdef35a..d845fd83b2 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index dfc53edd9f..acba6873a0 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 631fb56671..b2b26e211a 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 33bbf8f7ec..d97217de1b 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 55d32ca1f5..2e2d25fc4b 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index b326d5e77f..138cbfa1f7 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 75b2f9d03a..6f5659e56b 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index 3775c53c7c..32dbc9619d 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index c9f5d05463..5900eb0866 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index 04775362ee..bddd647564 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 95d493570c..ad5855045a 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -19,7 +19,7 @@ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 70df93939d..8fefeaf23d 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index a21030a9eb..2a90527a36 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 7ea5d95389..bfc55c8d07 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgSettings/OrgSettings.tsx#L13) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index 7fb0774b3c..0019abea49 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index 58a98c70e1..dee2227aa9 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 5ea99e50ac..bec5e1c97c 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index 6169d2109b..b086742aa2 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 580ae063d3..63c36b5a54 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index 314d6c9dfd..e75daf817b 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index ebd7721aa6..f8da8a0835 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index b99b7dca32..541ecbabed 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index c3820ac902..62c9dd5c5b 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index c59cfe6ad9..1d25ca44fe 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 8e7d871987..3e1d243038 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index fb7a967028..0391aa7b92 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index ddb0371bf4..3566c22476 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index a87c93404e..9307ace14e 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index 31b72fc622..f91b4aa78d 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/Users/UsersMocks.ts#L233) From c97e96fe671f8babb580205186e131c385d1a7c7 Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Mon, 12 Feb 2024 16:29:00 +0530 Subject: [PATCH 03/16] Revert "Update documentation" This reverts commit afcd8940935e30c77ebf8e63ae966fcacf3513bc. --- ...AddOn_support_services_Plugin_helper.default.md | 6 +++--- ...ponents_EventCalendar_EventCalendar.ViewType.md | 4 ++-- ...nents_CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +++--- ...CheckIn_types.InterfaceAttendeeQueryResponse.md | 2 +- .../components_CheckIn_types.InterfaceModalProp.md | 6 +++--- ...mponents_CheckIn_types.InterfaceTableCheckIn.md | 10 +++++----- .../components_CheckIn_types.InterfaceTableData.md | 6 +++--- .../components_CheckIn_types.InterfaceUser.md | 6 +++--- ...apsibleDropdown.InterfaceCollapsibleDropdown.md | 4 ++-- ...mponent_IconComponent.InterfaceIconComponent.md | 8 ++++---- ...ent_LeftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +++--- ...ent_LeftDrawerEventWrapper.InterfacePropType.md | 4 ++-- ...erOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 +++++----- ...ftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +++--- ...stCard_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...rofileFieldSettings.InterfaceCustomFieldData.md | 4 ++-- ...nizationDashCards_CardItem.InterfaceCardItem.md | 14 +++++++------- ...ationScreen.InterfaceOrganizationScreenProps.md | 6 +++--- ...erAdminScreen.InterfaceSuperAdminScreenProps.md | 6 +++--- ...TableLoader_TableLoader.InterfaceTableLoader.md | 6 +++--- .../modules/components_AddOn_AddOn.md | 2 +- .../components_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ...nents_AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- .../components_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ...nents_AddOn_support_components_Action_Action.md | 2 +- ...n_support_components_MainContent_MainContent.md | 2 +- ...AddOn_support_components_SidePanel_SidePanel.md | 2 +- .../components_Advertisements_Advertisements.md | 2 +- ...s_core_AdvertisementEntry_AdvertisementEntry.md | 2 +- ..._AdvertisementRegister_AdvertisementRegister.md | 2 +- ...hangeLanguageDropdown_ChangeLanguageDropDown.md | 4 ++-- .../modules/components_CheckIn_CheckInModal.md | 2 +- .../modules/components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +++--- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...ents_CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../modules/components_ContriStats_ContriStats.md | 2 +- ...ts_CurrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...tCustomFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ..._EventRegistrantsModal_EventRegistrantsModal.md | 2 +- ...ventRegistrantsModal_EventRegistrantsWrapper.md | 2 +- .../modules/components_EventStats_EventStats.md | 2 +- .../components_EventStats_EventStatsWrapper.md | 2 +- ...mponents_EventStats_Statistics_AverageRating.md | 2 +- .../components_EventStats_Statistics_Feedback.md | 2 +- .../components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- .../components_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ...nents_LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../modules/components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...mponents_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...mponents_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...components_OrgAdminListCard_OrgAdminListCard.md | 2 +- .../components_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../modules/components_OrgListCard_OrgListCard.md | 2 +- ...mponents_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../modules/components_OrgPostCard_OrgPostCard.md | 2 +- ...ProfileFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../modules/components_OrgUpdate_OrgUpdateMocks.md | 6 +++--- ..._OrganizationCardStart_OrganizationCardStart.md | 2 +- ...components_OrganizationCard_OrganizationCard.md | 2 +- .../components_OrganizationDashCards_CardItem.md | 2 +- ...onents_OrganizationDashCards_CardItemLoading.md | 2 +- ...mponents_OrganizationDashCards_DashboardCard.md | 2 +- ...s_OrganizationDashCards_DashboardCardLoading.md | 2 +- ...onents_OrganizationScreen_OrganizationScreen.md | 2 +- .../components_PaginationList_PaginationList.md | 2 +- .../modules/components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...components_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../modules/components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...onents_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- .../components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...omponents_UserPortal_CommentCard_CommentCard.md | 2 +- ...omponents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ponents_UserPortal_DonationCard_DonationCard.md | 2 +- .../components_UserPortal_EventCard_EventCard.md | 2 +- .../modules/components_UserPortal_Login_Login.md | 2 +- ...UserPortal_OrganizationCard_OrganizationCard.md | 2 +- ...Portal_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...rtal_OrganizationSidebar_OrganizationSidebar.md | 2 +- .../components_UserPortal_PeopleCard_PeopleCard.md | 2 +- .../components_UserPortal_PostCard_PostCard.md | 2 +- ...ponents_UserPortal_PromotedPost_PromotedPost.md | 2 +- .../components_UserPortal_Register_Register.md | 2 +- ...rtal_SecuredRouteForUser_SecuredRouteForUser.md | 2 +- .../components_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...omponents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../modules/components_UserUpdate_UserUpdate.md | 2 +- ...components_UsersTableItem_UserTableItemMocks.md | 2 +- .../components_UsersTableItem_UsersTableItem.md | 2 +- ...components_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- .../components_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- .../screens_EventDashboard_EventDashboard_mocks.md | 4 ++-- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../modules/screens_MemberDetail_MemberDetail.md | 6 +++--- .../screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 8 ++++---- .../modules/screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../modules/screens_OrgSettings_OrgSettings.md | 2 +- ..._OrganizationDashboard_OrganizationDashboard.md | 2 +- ...nizationDashboard_OrganizationDashboardMocks.md | 6 +++--- ...creens_OrganizationEvents_OrganizationEvents.md | 2 +- ...creens_OrganizationPeople_OrganizationPeople.md | 2 +- .../modules/screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../modules/screens_UserPortal_Donate_Donate.md | 2 +- .../modules/screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ...reens_UserPortal_Organizations_Organizations.md | 2 +- .../modules/screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ...reens_UserPortal_UserLoginPage_UserLoginPage.md | 2 +- talawa-admin-docs/modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +++--- 131 files changed, 187 insertions(+), 187 deletions(-) diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index dbe64a8dff..31189c706c 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index e260eccfa4..29922c23d5 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index 67e8e0c904..eb47c5bd4e 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index 6a5ca8ceed..9ecfe473e1 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index 21d5adbae7..2fa711670a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index ddf1e55562..e87af3ecc3 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 08536c973f..390a79948f 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index bd3c19910a..877cb3ff5a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index 521d6fedd5..a94bf4c9bf 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index 4c5e80a787..a8669a5913 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 97c85bfbbf..2323d9e1b9 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 5fcf0c3f38..231bd29f60 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index c7b7d20bb2..4ba897ae0f 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index 959ec9f724..d1fc895d2d 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index ac295ec8ac..9d46c92019 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index ed7e061cc1..7ccadce5c2 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index 5466f2fd02..5efc787028 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 051eb3bb1a..1b6a706c65 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index 82bcabf9bb..f6f3b33975 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index 386dd58593..e545773409 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index ab6e1abefe..7708f3efc0 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index 3191310dc5..d5d4096e0d 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index 6037949ce9..2a0b34d8cf 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index ef59abbc7c..d6f1d0ac38 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index 691fdbc553..09c5ab3380 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index d557ed8576..f93d3d6b94 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index 16e56a5d98..af9faef144 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index a67715a33e..c9411bcff6 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index c3ebbe44c9..17e75d0708 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index f4b6c28221..22f50c02b7 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 6b3f6dac51..5a91b6e729 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index e799cd07cb..44f300753c 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index adb41f1af4..ccee8edbae 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index 11242cfb70..9bee87f600 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index 7c7a739b42..aceaaf32f1 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 0fda411b2b..209120d33e 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index c3a801d9e8..97a50ec9f6 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index d3d44b3212..0811628058 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index addb029815..07484f6961 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 53a451d78c..6996074140 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 42496560ec..2b688e769e 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index a8ef34c4cc..740b3130a9 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index 15c2ba8e70..be0467b5cb 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index fa2ab990f5..d2df808a4e 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index 74a5e58ba2..a8458ded95 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index b2c1b2be1c..32d3c032d5 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 36dba47086..2278652afb 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index 84276def47..d8f65115de 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index c1595a4576..2970784a82 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index f51d355f3d..d6c62473e2 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index a22603ea89..2260ddfa76 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index e252c7e4b1..bc862524a0 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index f6d5a898e0..2305d3dbad 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index 9e32834db3..e2b5d4d9a6 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index c4dd9fb9df..6d0b7b40de 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index e2c4714d4e..ae7da72814 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index e45ff01b53..dd36c8b540 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index f2df9ee701..e7d0d13510 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 95964fd966..62629fd66c 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index ce0e702ea0..3c27d00110 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index 79315714bf..a502f77abd 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index bbe9df7c40..7793777b0d 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index d7d1b04567..128d528006 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 10542e0249..18bfd4460b 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index d36bf079a7..3bfe921cb6 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index 4411326feb..abd4ea5663 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 8ac17227d9..24633b513a 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index 737c1d1fb8..f3671db7f1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index 76b0429bc3..356df928c1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index 4864f3aadf..1f3d0f7f15 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index bb2bc6c6e6..e72bc4b169 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index d88bf2090b..149ddf73b5 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index d8fc516eb3..c837ff6ae3 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 1b75aab4a0..4874366105 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 3d03f8f74e..48551c741d 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 7ca9bbf451..8abc38e92f 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index fcec6c6b9a..2b35c78487 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index 3fd96493d9..d4d4be6cd8 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index 7409f46764..1f48f3cb87 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 562d4d462d..11c00f6131 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 50b97c0b7b..9874a5c25e 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index a239f5e667..f8f040f88e 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 26b68387bd..517a6d692f 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 0d7877551f..84480b9f02 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index 7dc54b7d9d..9d36774a58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index 5dea53f433..f40934d0f8 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index 4b0ef77eda..c40b5fd806 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 84efa48636..564eb9afa7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index de5a41e327..4b80b3969f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index 6902f8e28b..c7b1e8643e 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index e3be2592af..492e7a44c7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 89c2f01108..6902fe678a 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index c1d20c2ee9..a3497d6bca 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index f7d1c1cd59..533ef95663 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 034e76f47b..8ce7350f58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 12d8c67e3b..7865759c03 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index 0dd8e1fd07..b834c74894 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 51e4f99c38..265a3d12ef 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index a941bea6b8..d31979578d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 07ae5df9bc..6e9f01258e 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index 8e3159f9d5..85305b69e0 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index 856ae9bde4..c1e49109f4 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index d845fd83b2..f35bdef35a 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index acba6873a0..dfc53edd9f 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index b2b26e211a..631fb56671 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index d97217de1b..33bbf8f7ec 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 2e2d25fc4b..55d32ca1f5 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index 138cbfa1f7..b326d5e77f 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 6f5659e56b..75b2f9d03a 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index 32dbc9619d..3775c53c7c 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index 5900eb0866..c9f5d05463 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index bddd647564..04775362ee 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index ad5855045a..95d493570c 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -19,7 +19,7 @@ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 8fefeaf23d..70df93939d 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index 2a90527a36..a21030a9eb 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index bfc55c8d07..7ea5d95389 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index 0019abea49..7fb0774b3c 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index dee2227aa9..58a98c70e1 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index bec5e1c97c..5ea99e50ac 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index b086742aa2..6169d2109b 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 63c36b5a54..580ae063d3 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index e75daf817b..314d6c9dfd 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index f8da8a0835..ebd7721aa6 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index 541ecbabed..b99b7dca32 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index 62c9dd5c5b..c3820ac902 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index 1d25ca44fe..c59cfe6ad9 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 3e1d243038..8e7d871987 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index 0391aa7b92..fb7a967028 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index 3566c22476..ddb0371bf4 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index 9307ace14e..a87c93404e 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index f91b4aa78d..31b72fc622 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/Shubh152/talawa-admin/blob/2f9424f/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) From ee9b3d152e8e4d79684534f4f2451a74c577f8f4 Mon Sep 17 00:00:00 2001 From: Shubh152 <121512095+Shubh152@users.noreply.github.com> Date: Mon, 12 Feb 2024 11:02:38 +0000 Subject: [PATCH 04/16] Update documentation --- ...AddOn_support_services_Plugin_helper.default.md | 6 +++--- ...ponents_EventCalendar_EventCalendar.ViewType.md | 4 ++-- ...nents_CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +++--- ...CheckIn_types.InterfaceAttendeeQueryResponse.md | 2 +- .../components_CheckIn_types.InterfaceModalProp.md | 6 +++--- ...mponents_CheckIn_types.InterfaceTableCheckIn.md | 10 +++++----- .../components_CheckIn_types.InterfaceTableData.md | 6 +++--- .../components_CheckIn_types.InterfaceUser.md | 6 +++--- ...apsibleDropdown.InterfaceCollapsibleDropdown.md | 4 ++-- ...mponent_IconComponent.InterfaceIconComponent.md | 8 ++++---- ...ent_LeftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +++--- ...ent_LeftDrawerEventWrapper.InterfacePropType.md | 4 ++-- ...erOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 +++++----- ...ftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +++--- ...stCard_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...rofileFieldSettings.InterfaceCustomFieldData.md | 4 ++-- ...nizationDashCards_CardItem.InterfaceCardItem.md | 14 +++++++------- ...ationScreen.InterfaceOrganizationScreenProps.md | 6 +++--- ...erAdminScreen.InterfaceSuperAdminScreenProps.md | 6 +++--- ...TableLoader_TableLoader.InterfaceTableLoader.md | 6 +++--- .../modules/components_AddOn_AddOn.md | 2 +- .../components_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ...nents_AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- .../components_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ...nents_AddOn_support_components_Action_Action.md | 2 +- ...n_support_components_MainContent_MainContent.md | 2 +- ...AddOn_support_components_SidePanel_SidePanel.md | 2 +- .../components_Advertisements_Advertisements.md | 2 +- ...s_core_AdvertisementEntry_AdvertisementEntry.md | 2 +- ..._AdvertisementRegister_AdvertisementRegister.md | 2 +- ...hangeLanguageDropdown_ChangeLanguageDropDown.md | 4 ++-- .../modules/components_CheckIn_CheckInModal.md | 2 +- .../modules/components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +++--- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...ents_CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../modules/components_ContriStats_ContriStats.md | 2 +- ...ts_CurrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...tCustomFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ..._EventRegistrantsModal_EventRegistrantsModal.md | 2 +- ...ventRegistrantsModal_EventRegistrantsWrapper.md | 2 +- .../modules/components_EventStats_EventStats.md | 2 +- .../components_EventStats_EventStatsWrapper.md | 2 +- ...mponents_EventStats_Statistics_AverageRating.md | 2 +- .../components_EventStats_Statistics_Feedback.md | 2 +- .../components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- .../components_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ...nents_LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../modules/components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...mponents_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...mponents_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...components_OrgAdminListCard_OrgAdminListCard.md | 2 +- .../components_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../modules/components_OrgListCard_OrgListCard.md | 2 +- ...mponents_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../modules/components_OrgPostCard_OrgPostCard.md | 2 +- ...ProfileFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../modules/components_OrgUpdate_OrgUpdateMocks.md | 6 +++--- ..._OrganizationCardStart_OrganizationCardStart.md | 2 +- ...components_OrganizationCard_OrganizationCard.md | 2 +- .../components_OrganizationDashCards_CardItem.md | 2 +- ...onents_OrganizationDashCards_CardItemLoading.md | 2 +- ...mponents_OrganizationDashCards_DashboardCard.md | 2 +- ...s_OrganizationDashCards_DashboardCardLoading.md | 2 +- ...onents_OrganizationScreen_OrganizationScreen.md | 2 +- .../components_PaginationList_PaginationList.md | 2 +- .../modules/components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...components_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../modules/components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...onents_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- .../components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...omponents_UserPortal_CommentCard_CommentCard.md | 2 +- ...omponents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ponents_UserPortal_DonationCard_DonationCard.md | 2 +- .../components_UserPortal_EventCard_EventCard.md | 2 +- .../modules/components_UserPortal_Login_Login.md | 2 +- ...UserPortal_OrganizationCard_OrganizationCard.md | 2 +- ...Portal_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...rtal_OrganizationSidebar_OrganizationSidebar.md | 2 +- .../components_UserPortal_PeopleCard_PeopleCard.md | 2 +- .../components_UserPortal_PostCard_PostCard.md | 2 +- ...ponents_UserPortal_PromotedPost_PromotedPost.md | 2 +- .../components_UserPortal_Register_Register.md | 2 +- ...rtal_SecuredRouteForUser_SecuredRouteForUser.md | 2 +- .../components_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...omponents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../modules/components_UserUpdate_UserUpdate.md | 2 +- ...components_UsersTableItem_UserTableItemMocks.md | 2 +- .../components_UsersTableItem_UsersTableItem.md | 2 +- ...components_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- .../components_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- .../screens_EventDashboard_EventDashboard_mocks.md | 4 ++-- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../modules/screens_MemberDetail_MemberDetail.md | 6 +++--- .../screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 8 ++++---- .../modules/screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../modules/screens_OrgSettings_OrgSettings.md | 2 +- ..._OrganizationDashboard_OrganizationDashboard.md | 2 +- ...nizationDashboard_OrganizationDashboardMocks.md | 6 +++--- ...creens_OrganizationEvents_OrganizationEvents.md | 2 +- ...creens_OrganizationPeople_OrganizationPeople.md | 2 +- .../modules/screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../modules/screens_UserPortal_Donate_Donate.md | 2 +- .../modules/screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ...reens_UserPortal_Organizations_Organizations.md | 2 +- .../modules/screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ...reens_UserPortal_UserLoginPage_UserLoginPage.md | 2 +- talawa-admin-docs/modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +++--- 131 files changed, 187 insertions(+), 187 deletions(-) diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index 31189c706c..cb06394986 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 29922c23d5..2eb43daa75 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index eb47c5bd4e..b25a6080c9 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index 9ecfe473e1..35775c70d6 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index 2fa711670a..fada8a7cd4 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index e87af3ecc3..a1bf66f443 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 390a79948f..b48c9c1e17 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index 877cb3ff5a..b8c53be4b1 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index a94bf4c9bf..65538d60ff 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index a8669a5913..bae53c036f 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 2323d9e1b9..13b6ec70e7 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 231bd29f60..b6951e85d8 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 4ba897ae0f..6b24b26022 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index d1fc895d2d..4b37dba6d5 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index 9d46c92019..e711adce03 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index 7ccadce5c2..5d0486e029 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index 5efc787028..c660c2ee3f 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 1b6a706c65..4dce566253 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index f6f3b33975..74fdd7f170 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index e545773409..b73cd51a9f 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index 7708f3efc0..677e14e1fd 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index d5d4096e0d..cbb6431f65 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index 2a0b34d8cf..5ca3b61460 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index d6f1d0ac38..98cf254452 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index 09c5ab3380..d3ec5225e6 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index f93d3d6b94..536ed61b41 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index af9faef144..4d570b4271 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index c9411bcff6..22c67f5a5a 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 17e75d0708..1f464e0d1e 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index 22f50c02b7..5194c6d149 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 5a91b6e729..f5c28c9865 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index 44f300753c..b4199a4372 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index ccee8edbae..bd1da1ca51 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index 9bee87f600..ffa6d1dac3 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index aceaaf32f1..b86f9113a5 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 209120d33e..475ce280b7 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 97a50ec9f6..285a9c5e2f 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 0811628058..6f06ad8fbf 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index 07484f6961..b3e977dce9 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 6996074140..00486b656e 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 2b688e769e..596b3d392e 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 740b3130a9..6058eb3379 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index be0467b5cb..5dc509e6ad 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index d2df808a4e..c9cd7e4d60 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index a8458ded95..c546958b89 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index 32d3c032d5..a09ff5b709 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 2278652afb..5b40cb7813 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index d8f65115de..619309f293 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index 2970784a82..72c3e070e6 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index d6c62473e2..07acadc72e 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index 2260ddfa76..b485aa6ddd 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index bc862524a0..4d2ed7d987 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index 2305d3dbad..31b4af40cb 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index e2b5d4d9a6..778d3966e7 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index 6d0b7b40de..5de0c2ea54 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index ae7da72814..96d92e19f1 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index dd36c8b540..425e713483 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index e7d0d13510..ad24a725fb 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 62629fd66c..40e4e43c89 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 3c27d00110..31a5b4a520 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index a502f77abd..d22106c6dd 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index 7793777b0d..339c252288 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 128d528006..1ac6859131 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 18bfd4460b..634d430111 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index 3bfe921cb6..e807434826 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index abd4ea5663..619f125ea2 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 24633b513a..75fcf54533 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index f3671db7f1..e501a5f533 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index 356df928c1..a5dc7d65cf 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index 1f3d0f7f15..04ec952be1 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index e72bc4b169..45c43be017 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index 149ddf73b5..a580b0f0f9 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index c837ff6ae3..2cc7ceb24a 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 4874366105..2210876727 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 48551c741d..aecb7e8205 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 8abc38e92f..1830a3a5cc 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 2b35c78487..4c2b72facc 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index d4d4be6cd8..354daa731f 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index 1f48f3cb87..e0049afeb3 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 11c00f6131..6130c80fed 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 9874a5c25e..18c63eaa35 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index f8f040f88e..d72df6f299 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 517a6d692f..53fe6e801b 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 84480b9f02..2449f024a8 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index 9d36774a58..eb4b289911 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index f40934d0f8..0fd50e78bb 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index c40b5fd806..dc55cf4f71 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 564eb9afa7..3b8233b685 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 4b80b3969f..84dc03d128 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index c7b1e8643e..b6b3eefe7b 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 492e7a44c7..5e400516c1 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 6902fe678a..3caf873bee 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index a3497d6bca..ba495e6fb6 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index 533ef95663..ce936e2011 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 8ce7350f58..53cf4d56ad 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 7865759c03..a6cc6c55cf 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index b834c74894..a0b0c31ae3 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 265a3d12ef..f2d9a2708b 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index d31979578d..205d5ec882 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 6e9f01258e..f691f401fd 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index 85305b69e0..f7d35ec5ab 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index c1e49109f4..fad9413995 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index f35bdef35a..563d704b27 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index dfc53edd9f..090e5ed486 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 631fb56671..f76460ed65 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 33bbf8f7ec..5051103972 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 55d32ca1f5..971e821ff9 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index b326d5e77f..6a859c1b49 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 75b2f9d03a..dae40e1eab 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index 3775c53c7c..a93e778bec 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index c9f5d05463..4529977648 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index 04775362ee..c1bf52c946 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 95d493570c..84f6b04de8 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -19,7 +19,7 @@ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 70df93939d..8217aef482 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index a21030a9eb..dbe094d9a1 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 7ea5d95389..45f928d926 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgSettings/OrgSettings.tsx#L13) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index 7fb0774b3c..fce3d1175d 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index 58a98c70e1..c909acf2b5 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 5ea99e50ac..3269c49b5f 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index 6169d2109b..2d5aca022e 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 580ae063d3..35b40b9172 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index 314d6c9dfd..1ffdb88648 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index ebd7721aa6..0878902f6f 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index b99b7dca32..8120fbdd60 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index c3820ac902..754c4c26df 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index c59cfe6ad9..3f8bea647a 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 8e7d871987..8ac7694182 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index fb7a967028..135d7be56e 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index ddb0371bf4..08da4a2cdb 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index a87c93404e..26e4eeb8c8 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index 31b72fc622..7677dd3ab6 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/Users/UsersMocks.ts#L233) From 10523b0a376139fbe31d5ae6dd36258b95fdd5a0 Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Tue, 13 Feb 2024 14:49:54 +0530 Subject: [PATCH 05/16] make review changes --- src/GraphQl/Mutations/mutations.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/GraphQl/Mutations/mutations.ts b/src/GraphQl/Mutations/mutations.ts index 5d364c27d7..1ff1e53491 100644 --- a/src/GraphQl/Mutations/mutations.ts +++ b/src/GraphQl/Mutations/mutations.ts @@ -84,7 +84,6 @@ export const ADDRESS_DETAILS_FRAGMENT = gql` export const UPDATE_USER_MUTATION = gql` mutation UpdateUserProfile( - $id: ID $firstName: String $lastName: String $email: EmailAddress @@ -96,8 +95,7 @@ export const UPDATE_USER_MUTATION = gql` firstName: $firstName lastName: $lastName email: $email - id: $id - applangcode: $appLanguageCode + appLanguageCode: $appLanguageCode } file: $file ) { From 17e2e865db76e9320c6dccdd2d33aaaec466f0ad Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Tue, 13 Feb 2024 14:53:38 +0530 Subject: [PATCH 06/16] Revert "Update documentation" This reverts commit ee9b3d152e8e4d79684534f4f2451a74c577f8f4. --- ...AddOn_support_services_Plugin_helper.default.md | 6 +++--- ...ponents_EventCalendar_EventCalendar.ViewType.md | 4 ++-- ...nents_CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +++--- ...CheckIn_types.InterfaceAttendeeQueryResponse.md | 2 +- .../components_CheckIn_types.InterfaceModalProp.md | 6 +++--- ...mponents_CheckIn_types.InterfaceTableCheckIn.md | 10 +++++----- .../components_CheckIn_types.InterfaceTableData.md | 6 +++--- .../components_CheckIn_types.InterfaceUser.md | 6 +++--- ...apsibleDropdown.InterfaceCollapsibleDropdown.md | 4 ++-- ...mponent_IconComponent.InterfaceIconComponent.md | 8 ++++---- ...ent_LeftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +++--- ...ent_LeftDrawerEventWrapper.InterfacePropType.md | 4 ++-- ...erOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 +++++----- ...ftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +++--- ...stCard_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...rofileFieldSettings.InterfaceCustomFieldData.md | 4 ++-- ...nizationDashCards_CardItem.InterfaceCardItem.md | 14 +++++++------- ...ationScreen.InterfaceOrganizationScreenProps.md | 6 +++--- ...erAdminScreen.InterfaceSuperAdminScreenProps.md | 6 +++--- ...TableLoader_TableLoader.InterfaceTableLoader.md | 6 +++--- .../modules/components_AddOn_AddOn.md | 2 +- .../components_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ...nents_AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- .../components_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ...nents_AddOn_support_components_Action_Action.md | 2 +- ...n_support_components_MainContent_MainContent.md | 2 +- ...AddOn_support_components_SidePanel_SidePanel.md | 2 +- .../components_Advertisements_Advertisements.md | 2 +- ...s_core_AdvertisementEntry_AdvertisementEntry.md | 2 +- ..._AdvertisementRegister_AdvertisementRegister.md | 2 +- ...hangeLanguageDropdown_ChangeLanguageDropDown.md | 4 ++-- .../modules/components_CheckIn_CheckInModal.md | 2 +- .../modules/components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +++--- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...ents_CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../modules/components_ContriStats_ContriStats.md | 2 +- ...ts_CurrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...tCustomFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ..._EventRegistrantsModal_EventRegistrantsModal.md | 2 +- ...ventRegistrantsModal_EventRegistrantsWrapper.md | 2 +- .../modules/components_EventStats_EventStats.md | 2 +- .../components_EventStats_EventStatsWrapper.md | 2 +- ...mponents_EventStats_Statistics_AverageRating.md | 2 +- .../components_EventStats_Statistics_Feedback.md | 2 +- .../components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- .../components_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ...nents_LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../modules/components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...mponents_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...mponents_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...components_OrgAdminListCard_OrgAdminListCard.md | 2 +- .../components_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../modules/components_OrgListCard_OrgListCard.md | 2 +- ...mponents_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../modules/components_OrgPostCard_OrgPostCard.md | 2 +- ...ProfileFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../modules/components_OrgUpdate_OrgUpdateMocks.md | 6 +++--- ..._OrganizationCardStart_OrganizationCardStart.md | 2 +- ...components_OrganizationCard_OrganizationCard.md | 2 +- .../components_OrganizationDashCards_CardItem.md | 2 +- ...onents_OrganizationDashCards_CardItemLoading.md | 2 +- ...mponents_OrganizationDashCards_DashboardCard.md | 2 +- ...s_OrganizationDashCards_DashboardCardLoading.md | 2 +- ...onents_OrganizationScreen_OrganizationScreen.md | 2 +- .../components_PaginationList_PaginationList.md | 2 +- .../modules/components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...components_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../modules/components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...onents_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- .../components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...omponents_UserPortal_CommentCard_CommentCard.md | 2 +- ...omponents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ponents_UserPortal_DonationCard_DonationCard.md | 2 +- .../components_UserPortal_EventCard_EventCard.md | 2 +- .../modules/components_UserPortal_Login_Login.md | 2 +- ...UserPortal_OrganizationCard_OrganizationCard.md | 2 +- ...Portal_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...rtal_OrganizationSidebar_OrganizationSidebar.md | 2 +- .../components_UserPortal_PeopleCard_PeopleCard.md | 2 +- .../components_UserPortal_PostCard_PostCard.md | 2 +- ...ponents_UserPortal_PromotedPost_PromotedPost.md | 2 +- .../components_UserPortal_Register_Register.md | 2 +- ...rtal_SecuredRouteForUser_SecuredRouteForUser.md | 2 +- .../components_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...omponents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../modules/components_UserUpdate_UserUpdate.md | 2 +- ...components_UsersTableItem_UserTableItemMocks.md | 2 +- .../components_UsersTableItem_UsersTableItem.md | 2 +- ...components_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- .../components_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- .../screens_EventDashboard_EventDashboard_mocks.md | 4 ++-- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../modules/screens_MemberDetail_MemberDetail.md | 6 +++--- .../screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 8 ++++---- .../modules/screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../modules/screens_OrgSettings_OrgSettings.md | 2 +- ..._OrganizationDashboard_OrganizationDashboard.md | 2 +- ...nizationDashboard_OrganizationDashboardMocks.md | 6 +++--- ...creens_OrganizationEvents_OrganizationEvents.md | 2 +- ...creens_OrganizationPeople_OrganizationPeople.md | 2 +- .../modules/screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../modules/screens_UserPortal_Donate_Donate.md | 2 +- .../modules/screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ...reens_UserPortal_Organizations_Organizations.md | 2 +- .../modules/screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ...reens_UserPortal_UserLoginPage_UserLoginPage.md | 2 +- talawa-admin-docs/modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +++--- 131 files changed, 187 insertions(+), 187 deletions(-) diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index cb06394986..31189c706c 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 2eb43daa75..29922c23d5 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index b25a6080c9..eb47c5bd4e 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index 35775c70d6..9ecfe473e1 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index fada8a7cd4..2fa711670a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index a1bf66f443..e87af3ecc3 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index b48c9c1e17..390a79948f 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index b8c53be4b1..877cb3ff5a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index 65538d60ff..a94bf4c9bf 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index bae53c036f..a8669a5913 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 13b6ec70e7..2323d9e1b9 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index b6951e85d8..231bd29f60 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 6b24b26022..4ba897ae0f 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index 4b37dba6d5..d1fc895d2d 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index e711adce03..9d46c92019 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index 5d0486e029..7ccadce5c2 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index c660c2ee3f..5efc787028 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 4dce566253..1b6a706c65 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index 74fdd7f170..f6f3b33975 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index b73cd51a9f..e545773409 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index 677e14e1fd..7708f3efc0 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index cbb6431f65..d5d4096e0d 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index 5ca3b61460..2a0b34d8cf 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index 98cf254452..d6f1d0ac38 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index d3ec5225e6..09c5ab3380 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index 536ed61b41..f93d3d6b94 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index 4d570b4271..af9faef144 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index 22c67f5a5a..c9411bcff6 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 1f464e0d1e..17e75d0708 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index 5194c6d149..22f50c02b7 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index f5c28c9865..5a91b6e729 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index b4199a4372..44f300753c 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index bd1da1ca51..ccee8edbae 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index ffa6d1dac3..9bee87f600 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index b86f9113a5..aceaaf32f1 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 475ce280b7..209120d33e 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 285a9c5e2f..97a50ec9f6 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 6f06ad8fbf..0811628058 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index b3e977dce9..07484f6961 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 00486b656e..6996074140 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 596b3d392e..2b688e769e 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 6058eb3379..740b3130a9 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index 5dc509e6ad..be0467b5cb 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index c9cd7e4d60..d2df808a4e 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index c546958b89..a8458ded95 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index a09ff5b709..32d3c032d5 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 5b40cb7813..2278652afb 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index 619309f293..d8f65115de 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index 72c3e070e6..2970784a82 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index 07acadc72e..d6c62473e2 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index b485aa6ddd..2260ddfa76 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index 4d2ed7d987..bc862524a0 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index 31b4af40cb..2305d3dbad 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index 778d3966e7..e2b5d4d9a6 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index 5de0c2ea54..6d0b7b40de 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index 96d92e19f1..ae7da72814 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index 425e713483..dd36c8b540 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index ad24a725fb..e7d0d13510 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 40e4e43c89..62629fd66c 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 31a5b4a520..3c27d00110 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index d22106c6dd..a502f77abd 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index 339c252288..7793777b0d 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 1ac6859131..128d528006 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 634d430111..18bfd4460b 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index e807434826..3bfe921cb6 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index 619f125ea2..abd4ea5663 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 75fcf54533..24633b513a 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index e501a5f533..f3671db7f1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index a5dc7d65cf..356df928c1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index 04ec952be1..1f3d0f7f15 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index 45c43be017..e72bc4b169 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index a580b0f0f9..149ddf73b5 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index 2cc7ceb24a..c837ff6ae3 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 2210876727..4874366105 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index aecb7e8205..48551c741d 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 1830a3a5cc..8abc38e92f 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 4c2b72facc..2b35c78487 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index 354daa731f..d4d4be6cd8 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index e0049afeb3..1f48f3cb87 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 6130c80fed..11c00f6131 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 18c63eaa35..9874a5c25e 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index d72df6f299..f8f040f88e 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 53fe6e801b..517a6d692f 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 2449f024a8..84480b9f02 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index eb4b289911..9d36774a58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index 0fd50e78bb..f40934d0f8 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index dc55cf4f71..c40b5fd806 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 3b8233b685..564eb9afa7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 84dc03d128..4b80b3969f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index b6b3eefe7b..c7b1e8643e 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 5e400516c1..492e7a44c7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 3caf873bee..6902fe678a 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index ba495e6fb6..a3497d6bca 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index ce936e2011..533ef95663 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 53cf4d56ad..8ce7350f58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index a6cc6c55cf..7865759c03 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index a0b0c31ae3..b834c74894 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index f2d9a2708b..265a3d12ef 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index 205d5ec882..d31979578d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index f691f401fd..6e9f01258e 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index f7d35ec5ab..85305b69e0 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index fad9413995..c1e49109f4 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index 563d704b27..f35bdef35a 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index 090e5ed486..dfc53edd9f 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index f76460ed65..631fb56671 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 5051103972..33bbf8f7ec 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 971e821ff9..55d32ca1f5 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index 6a859c1b49..b326d5e77f 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index dae40e1eab..75b2f9d03a 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index a93e778bec..3775c53c7c 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index 4529977648..c9f5d05463 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index c1bf52c946..04775362ee 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 84f6b04de8..95d493570c 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -19,7 +19,7 @@ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 8217aef482..70df93939d 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index dbe094d9a1..a21030a9eb 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 45f928d926..7ea5d95389 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index fce3d1175d..7fb0774b3c 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index c909acf2b5..58a98c70e1 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 3269c49b5f..5ea99e50ac 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index 2d5aca022e..6169d2109b 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 35b40b9172..580ae063d3 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index 1ffdb88648..314d6c9dfd 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index 0878902f6f..ebd7721aa6 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index 8120fbdd60..b99b7dca32 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index 754c4c26df..c3820ac902 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index 3f8bea647a..c59cfe6ad9 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 8ac7694182..8e7d871987 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index 135d7be56e..fb7a967028 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index 08da4a2cdb..ddb0371bf4 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index 26e4eeb8c8..a87c93404e 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index 7677dd3ab6..31b72fc622 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/Shubh152/talawa-admin/blob/c97e96f/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) From 1053a917a98dfabd69b335e2de7c286a862ef653 Mon Sep 17 00:00:00 2001 From: Shubh152 <121512095+Shubh152@users.noreply.github.com> Date: Tue, 13 Feb 2024 09:26:47 +0000 Subject: [PATCH 07/16] Update documentation --- ...AddOn_support_services_Plugin_helper.default.md | 6 +++--- ...ponents_EventCalendar_EventCalendar.ViewType.md | 4 ++-- ...nents_CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +++--- ...CheckIn_types.InterfaceAttendeeQueryResponse.md | 2 +- .../components_CheckIn_types.InterfaceModalProp.md | 6 +++--- ...mponents_CheckIn_types.InterfaceTableCheckIn.md | 10 +++++----- .../components_CheckIn_types.InterfaceTableData.md | 6 +++--- .../components_CheckIn_types.InterfaceUser.md | 6 +++--- ...apsibleDropdown.InterfaceCollapsibleDropdown.md | 4 ++-- ...mponent_IconComponent.InterfaceIconComponent.md | 8 ++++---- ...ent_LeftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +++--- ...ent_LeftDrawerEventWrapper.InterfacePropType.md | 4 ++-- ...erOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 +++++----- ...ftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +++--- ...stCard_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...rofileFieldSettings.InterfaceCustomFieldData.md | 4 ++-- ...nizationDashCards_CardItem.InterfaceCardItem.md | 14 +++++++------- ...ationScreen.InterfaceOrganizationScreenProps.md | 6 +++--- ...erAdminScreen.InterfaceSuperAdminScreenProps.md | 6 +++--- ...TableLoader_TableLoader.InterfaceTableLoader.md | 6 +++--- .../modules/components_AddOn_AddOn.md | 2 +- .../components_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ...nents_AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- .../components_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ...nents_AddOn_support_components_Action_Action.md | 2 +- ...n_support_components_MainContent_MainContent.md | 2 +- ...AddOn_support_components_SidePanel_SidePanel.md | 2 +- .../components_Advertisements_Advertisements.md | 2 +- ...s_core_AdvertisementEntry_AdvertisementEntry.md | 2 +- ..._AdvertisementRegister_AdvertisementRegister.md | 2 +- ...hangeLanguageDropdown_ChangeLanguageDropDown.md | 4 ++-- .../modules/components_CheckIn_CheckInModal.md | 2 +- .../modules/components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +++--- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...ents_CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../modules/components_ContriStats_ContriStats.md | 2 +- ...ts_CurrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...tCustomFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ..._EventRegistrantsModal_EventRegistrantsModal.md | 2 +- ...ventRegistrantsModal_EventRegistrantsWrapper.md | 2 +- .../modules/components_EventStats_EventStats.md | 2 +- .../components_EventStats_EventStatsWrapper.md | 2 +- ...mponents_EventStats_Statistics_AverageRating.md | 2 +- .../components_EventStats_Statistics_Feedback.md | 2 +- .../components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- .../components_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ...nents_LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../modules/components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...mponents_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...mponents_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...components_OrgAdminListCard_OrgAdminListCard.md | 2 +- .../components_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../modules/components_OrgListCard_OrgListCard.md | 2 +- ...mponents_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../modules/components_OrgPostCard_OrgPostCard.md | 2 +- ...ProfileFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../modules/components_OrgUpdate_OrgUpdateMocks.md | 6 +++--- ..._OrganizationCardStart_OrganizationCardStart.md | 2 +- ...components_OrganizationCard_OrganizationCard.md | 2 +- .../components_OrganizationDashCards_CardItem.md | 2 +- ...onents_OrganizationDashCards_CardItemLoading.md | 2 +- ...mponents_OrganizationDashCards_DashboardCard.md | 2 +- ...s_OrganizationDashCards_DashboardCardLoading.md | 2 +- ...onents_OrganizationScreen_OrganizationScreen.md | 2 +- .../components_PaginationList_PaginationList.md | 2 +- .../modules/components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...components_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../modules/components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...onents_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- .../components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...omponents_UserPortal_CommentCard_CommentCard.md | 2 +- ...omponents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ponents_UserPortal_DonationCard_DonationCard.md | 2 +- .../components_UserPortal_EventCard_EventCard.md | 2 +- .../modules/components_UserPortal_Login_Login.md | 2 +- ...UserPortal_OrganizationCard_OrganizationCard.md | 2 +- ...Portal_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...rtal_OrganizationSidebar_OrganizationSidebar.md | 2 +- .../components_UserPortal_PeopleCard_PeopleCard.md | 2 +- .../components_UserPortal_PostCard_PostCard.md | 2 +- ...ponents_UserPortal_PromotedPost_PromotedPost.md | 2 +- .../components_UserPortal_Register_Register.md | 2 +- ...rtal_SecuredRouteForUser_SecuredRouteForUser.md | 2 +- .../components_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...omponents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../modules/components_UserUpdate_UserUpdate.md | 2 +- ...components_UsersTableItem_UserTableItemMocks.md | 2 +- .../components_UsersTableItem_UsersTableItem.md | 2 +- ...components_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- .../components_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- .../screens_EventDashboard_EventDashboard_mocks.md | 4 ++-- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../modules/screens_MemberDetail_MemberDetail.md | 6 +++--- .../screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 8 ++++---- .../modules/screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../modules/screens_OrgSettings_OrgSettings.md | 2 +- ..._OrganizationDashboard_OrganizationDashboard.md | 2 +- ...nizationDashboard_OrganizationDashboardMocks.md | 6 +++--- ...creens_OrganizationEvents_OrganizationEvents.md | 2 +- ...creens_OrganizationPeople_OrganizationPeople.md | 2 +- .../modules/screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../modules/screens_UserPortal_Donate_Donate.md | 2 +- .../modules/screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ...reens_UserPortal_Organizations_Organizations.md | 2 +- .../modules/screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ...reens_UserPortal_UserLoginPage_UserLoginPage.md | 2 +- talawa-admin-docs/modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +++--- 131 files changed, 187 insertions(+), 187 deletions(-) diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index 31189c706c..2e0c553f3c 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 29922c23d5..4dac72b71f 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index eb47c5bd4e..066237d73f 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index 9ecfe473e1..db76cdcb54 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index 2fa711670a..4e0eefb933 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index e87af3ecc3..a2d3ba5202 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 390a79948f..872d896265 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index 877cb3ff5a..59b0b60c26 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index a94bf4c9bf..1c476ebd4e 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index a8669a5913..ec166fddb2 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 2323d9e1b9..b36d6634db 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 231bd29f60..1b19ff471e 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 4ba897ae0f..b32996ce5b 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index d1fc895d2d..b872981735 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index 9d46c92019..fe186bfcb8 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index 7ccadce5c2..2d155646f3 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index 5efc787028..bffb01d921 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 1b6a706c65..1adfaba409 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index f6f3b33975..0e2828f33e 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index e545773409..0ab2bf5f87 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index 7708f3efc0..6ef6f51460 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index d5d4096e0d..569c3268d9 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index 2a0b34d8cf..5615699ddc 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index d6f1d0ac38..fdffca7808 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index 09c5ab3380..c669adfaab 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index f93d3d6b94..5c985b7892 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index af9faef144..d632c106ee 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index c9411bcff6..172f7a1fa5 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 17e75d0708..20d86c53d1 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index 22f50c02b7..ef4f41a4a9 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 5a91b6e729..8c2c776035 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index 44f300753c..e373ec5a02 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index ccee8edbae..b690bb2791 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index 9bee87f600..7414b1ceae 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index aceaaf32f1..39896951c8 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 209120d33e..4a56c15d00 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 97a50ec9f6..0cd3f5ce54 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 0811628058..30f8ab6cb2 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index 07484f6961..00de0232f7 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 6996074140..9e68fd897b 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 2b688e769e..eb9544b208 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 740b3130a9..e11e245542 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index be0467b5cb..a13838d392 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index d2df808a4e..60d03ac21b 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index a8458ded95..ea8ea50ded 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index 32d3c032d5..db0be8a83e 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 2278652afb..0506bdbda3 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index d8f65115de..04d59e9e3a 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index 2970784a82..8d4b12328e 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index d6c62473e2..aaa282bcf2 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index 2260ddfa76..01b68ac178 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index bc862524a0..5f2bfa92bf 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index 2305d3dbad..addda79793 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index e2b5d4d9a6..a692a9d7a8 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index 6d0b7b40de..a77172a14d 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index ae7da72814..94ee25cfe7 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index dd36c8b540..98aa4fecb9 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index e7d0d13510..a610c6c118 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 62629fd66c..600785b862 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 3c27d00110..a0bcaccea0 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index a502f77abd..f79f771c9d 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index 7793777b0d..e0a7bf5256 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 128d528006..941b2a9929 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 18bfd4460b..d56f825df6 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index 3bfe921cb6..c3b3cf57e5 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index abd4ea5663..e95780838a 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 24633b513a..116803bec4 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index f3671db7f1..d443ebef8d 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index 356df928c1..f133bb04b0 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index 1f3d0f7f15..f6ccbbd825 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index e72bc4b169..c4047f537a 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index 149ddf73b5..fb6026a986 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index c837ff6ae3..0708db30e9 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 4874366105..9d87a066fb 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 48551c741d..7ee27b9e04 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 8abc38e92f..d70b1ef644 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 2b35c78487..63ef248c23 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index d4d4be6cd8..56f35b7f9e 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index 1f48f3cb87..e4e2a77be3 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 11c00f6131..d24ee069ee 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 9874a5c25e..8b8ede3d54 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index f8f040f88e..d6de63a38d 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 517a6d692f..9d85f32b0b 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 84480b9f02..e5849c626f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index 9d36774a58..abc7fcedf6 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index f40934d0f8..d706b61e8a 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index c40b5fd806..24208672fc 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 564eb9afa7..85dc10e780 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 4b80b3969f..a65287c9ac 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index c7b1e8643e..9e01b69ca4 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 492e7a44c7..1458a1fab4 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 6902fe678a..bd0008ed0e 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index a3497d6bca..a2cc81d227 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index 533ef95663..0c38af8982 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 8ce7350f58..8884be0048 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 7865759c03..7fa34a35b3 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index b834c74894..b34555049f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 265a3d12ef..5fd3d22677 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index d31979578d..20d6d0c437 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 6e9f01258e..7bca91f8b1 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index 85305b69e0..c3234d7d16 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index c1e49109f4..f5faeb6cbf 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index f35bdef35a..d81c1a5c77 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index dfc53edd9f..912feccd44 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 631fb56671..96b2ec875d 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 33bbf8f7ec..f736bfef17 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 55d32ca1f5..bd3186645b 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index b326d5e77f..8de21ed713 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 75b2f9d03a..9945a67db5 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index 3775c53c7c..eaeb4be83d 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index c9f5d05463..24b0e33ea3 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index 04775362ee..d82ca48260 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 95d493570c..80cfa49911 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -19,7 +19,7 @@ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 70df93939d..3f45c6e706 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index a21030a9eb..90cdb89804 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 7ea5d95389..726004fcd5 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgSettings/OrgSettings.tsx#L13) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index 7fb0774b3c..17143706ee 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index 58a98c70e1..5db79474ed 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 5ea99e50ac..6a5fa1f6b9 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index 6169d2109b..eabcff2869 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 580ae063d3..d612365d1f 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index 314d6c9dfd..d1453b3b8c 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index ebd7721aa6..435f696feb 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index b99b7dca32..7931c7a4e9 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index c3820ac902..38e0cbbb2e 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index c59cfe6ad9..7ae164a822 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 8e7d871987..32392ca58e 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index fb7a967028..a9343c6fcd 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index ddb0371bf4..8c28d89797 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index a87c93404e..33cb59051a 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index 31b72fc622..637af0dbb0 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/Users/UsersMocks.ts#L233) From d82c2f9be70bffa90c6b4ab3aefae4dfb581d4f2 Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sun, 25 Feb 2024 16:12:31 +0530 Subject: [PATCH 08/16] Fix prettier errors --- src/components/UserUpdate/UserUpdate.test.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/components/UserUpdate/UserUpdate.test.tsx b/src/components/UserUpdate/UserUpdate.test.tsx index b3785ee6cf..8fac512f80 100644 --- a/src/components/UserUpdate/UserUpdate.test.tsx +++ b/src/components/UserUpdate/UserUpdate.test.tsx @@ -122,18 +122,18 @@ describe('Testing User Update', () => { -
, + ); await wait(); userEvent.type( screen.getByPlaceholderText(/First Name/i), - formData.firstName, + formData.firstName ); userEvent.type( screen.getByPlaceholderText(/Last Name/i), - formData.lastName, + formData.lastName ); userEvent.type(screen.getByPlaceholderText(/Email/i), formData.email); // userEvent.selectOptions(screen.getByTestId('applangcode'), 'Français'); @@ -146,10 +146,10 @@ describe('Testing User Update', () => { userEvent.click(screen.getByText(/Save Changes/i)); expect(screen.getByPlaceholderText(/First Name/i)).toHaveValue( - formData.firstName, + formData.firstName ); expect(screen.getByPlaceholderText(/Last Name/i)).toHaveValue( - formData.lastName, + formData.lastName ); expect(screen.getByPlaceholderText(/Email/i)).toHaveValue(formData.email); @@ -159,7 +159,7 @@ describe('Testing User Update', () => { expect(screen.getByPlaceholderText(/Email/i)).toBeInTheDocument(); expect(screen.getByText(/Display Image/i)).toBeInTheDocument(); }); - + test('should display warnings for blank form submission', async () => { jest.spyOn(toast, 'warning'); @@ -170,7 +170,7 @@ describe('Testing User Update', () => { - , + ); await wait(); @@ -181,5 +181,4 @@ describe('Testing User Update', () => { expect(toast.warning).toHaveBeenCalledWith('Last Name cannot be blank!'); expect(toast.warning).toHaveBeenCalledWith('Email cannot be blank!'); }); - }); From 864aef216beb4731675b3c3444f8fc14c10a8555 Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sun, 25 Feb 2024 21:49:42 +0530 Subject: [PATCH 09/16] Update UserUpdate.tsx --- src/components/UserUpdate/UserUpdate.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/UserUpdate/UserUpdate.tsx b/src/components/UserUpdate/UserUpdate.tsx index 13927bc81e..897098d344 100644 --- a/src/components/UserUpdate/UserUpdate.tsx +++ b/src/components/UserUpdate/UserUpdate.tsx @@ -138,7 +138,6 @@ const UserUpdate: React.FC = ({ <>
- {/*

Update Your Details

*/}
@@ -213,7 +212,7 @@ const UserUpdate: React.FC = ({ { languages.find( - (lang) => lang.code == formState.appLanguageCode + (lang) => lang.code == formState.appLanguageCode, )?.name } From 3b0d29a91ec369c9a82ab6282f4aaa46d3840f5d Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sun, 25 Feb 2024 21:53:47 +0530 Subject: [PATCH 10/16] Update UserUpdate.test.tsx --- src/components/UserUpdate/UserUpdate.test.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/components/UserUpdate/UserUpdate.test.tsx b/src/components/UserUpdate/UserUpdate.test.tsx index 8fac512f80..2d69099482 100644 --- a/src/components/UserUpdate/UserUpdate.test.tsx +++ b/src/components/UserUpdate/UserUpdate.test.tsx @@ -102,7 +102,7 @@ describe('Testing User Update', () => { - + , ); await wait(); @@ -122,21 +122,20 @@ describe('Testing User Update', () => { - + , ); await wait(); userEvent.type( screen.getByPlaceholderText(/First Name/i), - formData.firstName + formData.firstName, ); userEvent.type( screen.getByPlaceholderText(/Last Name/i), - formData.lastName + formData.lastName, ); userEvent.type(screen.getByPlaceholderText(/Email/i), formData.email); - // userEvent.selectOptions(screen.getByTestId('applangcode'), 'Français'); expect(screen.getByRole('applangcode')).toBeInTheDocument(); expect(screen.getByText('English')).toBeInTheDocument(); @@ -146,10 +145,10 @@ describe('Testing User Update', () => { userEvent.click(screen.getByText(/Save Changes/i)); expect(screen.getByPlaceholderText(/First Name/i)).toHaveValue( - formData.firstName + formData.firstName, ); expect(screen.getByPlaceholderText(/Last Name/i)).toHaveValue( - formData.lastName + formData.lastName, ); expect(screen.getByPlaceholderText(/Email/i)).toHaveValue(formData.email); @@ -170,7 +169,7 @@ describe('Testing User Update', () => { - + , ); await wait(); From 4e752a22a5c481e39cb67bd0a41518cf576866de Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sun, 25 Feb 2024 22:15:03 +0530 Subject: [PATCH 11/16] Revert "Update documentation" This reverts commit 1053a917a98dfabd69b335e2de7c286a862ef653. --- ...AddOn_support_services_Plugin_helper.default.md | 6 +++--- ...ponents_EventCalendar_EventCalendar.ViewType.md | 4 ++-- ...nents_CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +++--- ...CheckIn_types.InterfaceAttendeeQueryResponse.md | 2 +- .../components_CheckIn_types.InterfaceModalProp.md | 6 +++--- ...mponents_CheckIn_types.InterfaceTableCheckIn.md | 10 +++++----- .../components_CheckIn_types.InterfaceTableData.md | 6 +++--- .../components_CheckIn_types.InterfaceUser.md | 6 +++--- ...apsibleDropdown.InterfaceCollapsibleDropdown.md | 4 ++-- ...mponent_IconComponent.InterfaceIconComponent.md | 8 ++++---- ...ent_LeftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +++--- ...ent_LeftDrawerEventWrapper.InterfacePropType.md | 4 ++-- ...erOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 +++++----- ...ftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +++--- ...stCard_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...rofileFieldSettings.InterfaceCustomFieldData.md | 4 ++-- ...nizationDashCards_CardItem.InterfaceCardItem.md | 14 +++++++------- ...ationScreen.InterfaceOrganizationScreenProps.md | 6 +++--- ...erAdminScreen.InterfaceSuperAdminScreenProps.md | 6 +++--- ...TableLoader_TableLoader.InterfaceTableLoader.md | 6 +++--- .../modules/components_AddOn_AddOn.md | 2 +- .../components_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ...nents_AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- .../components_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ...nents_AddOn_support_components_Action_Action.md | 2 +- ...n_support_components_MainContent_MainContent.md | 2 +- ...AddOn_support_components_SidePanel_SidePanel.md | 2 +- .../components_Advertisements_Advertisements.md | 2 +- ...s_core_AdvertisementEntry_AdvertisementEntry.md | 2 +- ..._AdvertisementRegister_AdvertisementRegister.md | 2 +- ...hangeLanguageDropdown_ChangeLanguageDropDown.md | 4 ++-- .../modules/components_CheckIn_CheckInModal.md | 2 +- .../modules/components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +++--- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...ents_CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../modules/components_ContriStats_ContriStats.md | 2 +- ...ts_CurrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...tCustomFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ..._EventRegistrantsModal_EventRegistrantsModal.md | 2 +- ...ventRegistrantsModal_EventRegistrantsWrapper.md | 2 +- .../modules/components_EventStats_EventStats.md | 2 +- .../components_EventStats_EventStatsWrapper.md | 2 +- ...mponents_EventStats_Statistics_AverageRating.md | 2 +- .../components_EventStats_Statistics_Feedback.md | 2 +- .../components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- .../components_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ...nents_LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../modules/components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...mponents_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...mponents_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...components_OrgAdminListCard_OrgAdminListCard.md | 2 +- .../components_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../modules/components_OrgListCard_OrgListCard.md | 2 +- ...mponents_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../modules/components_OrgPostCard_OrgPostCard.md | 2 +- ...ProfileFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../modules/components_OrgUpdate_OrgUpdateMocks.md | 6 +++--- ..._OrganizationCardStart_OrganizationCardStart.md | 2 +- ...components_OrganizationCard_OrganizationCard.md | 2 +- .../components_OrganizationDashCards_CardItem.md | 2 +- ...onents_OrganizationDashCards_CardItemLoading.md | 2 +- ...mponents_OrganizationDashCards_DashboardCard.md | 2 +- ...s_OrganizationDashCards_DashboardCardLoading.md | 2 +- ...onents_OrganizationScreen_OrganizationScreen.md | 2 +- .../components_PaginationList_PaginationList.md | 2 +- .../modules/components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...components_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../modules/components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...onents_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- .../components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...omponents_UserPortal_CommentCard_CommentCard.md | 2 +- ...omponents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ponents_UserPortal_DonationCard_DonationCard.md | 2 +- .../components_UserPortal_EventCard_EventCard.md | 2 +- .../modules/components_UserPortal_Login_Login.md | 2 +- ...UserPortal_OrganizationCard_OrganizationCard.md | 2 +- ...Portal_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...rtal_OrganizationSidebar_OrganizationSidebar.md | 2 +- .../components_UserPortal_PeopleCard_PeopleCard.md | 2 +- .../components_UserPortal_PostCard_PostCard.md | 2 +- ...ponents_UserPortal_PromotedPost_PromotedPost.md | 2 +- .../components_UserPortal_Register_Register.md | 2 +- ...rtal_SecuredRouteForUser_SecuredRouteForUser.md | 2 +- .../components_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...omponents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../modules/components_UserUpdate_UserUpdate.md | 2 +- ...components_UsersTableItem_UserTableItemMocks.md | 2 +- .../components_UsersTableItem_UsersTableItem.md | 2 +- ...components_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- .../components_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- .../screens_EventDashboard_EventDashboard_mocks.md | 4 ++-- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../modules/screens_MemberDetail_MemberDetail.md | 6 +++--- .../screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 8 ++++---- .../modules/screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../modules/screens_OrgSettings_OrgSettings.md | 2 +- ..._OrganizationDashboard_OrganizationDashboard.md | 2 +- ...nizationDashboard_OrganizationDashboardMocks.md | 6 +++--- ...creens_OrganizationEvents_OrganizationEvents.md | 2 +- ...creens_OrganizationPeople_OrganizationPeople.md | 2 +- .../modules/screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../modules/screens_UserPortal_Donate_Donate.md | 2 +- .../modules/screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ...reens_UserPortal_Organizations_Organizations.md | 2 +- .../modules/screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ...reens_UserPortal_UserLoginPage_UserLoginPage.md | 2 +- talawa-admin-docs/modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +++--- 131 files changed, 187 insertions(+), 187 deletions(-) diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index 2e0c553f3c..31189c706c 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 4dac72b71f..29922c23d5 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index 066237d73f..eb47c5bd4e 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index db76cdcb54..9ecfe473e1 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index 4e0eefb933..2fa711670a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index a2d3ba5202..e87af3ecc3 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 872d896265..390a79948f 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index 59b0b60c26..877cb3ff5a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index 1c476ebd4e..a94bf4c9bf 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index ec166fddb2..a8669a5913 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index b36d6634db..2323d9e1b9 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 1b19ff471e..231bd29f60 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index b32996ce5b..4ba897ae0f 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index b872981735..d1fc895d2d 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index fe186bfcb8..9d46c92019 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index 2d155646f3..7ccadce5c2 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index bffb01d921..5efc787028 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 1adfaba409..1b6a706c65 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index 0e2828f33e..f6f3b33975 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index 0ab2bf5f87..e545773409 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index 6ef6f51460..7708f3efc0 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index 569c3268d9..d5d4096e0d 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index 5615699ddc..2a0b34d8cf 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index fdffca7808..d6f1d0ac38 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index c669adfaab..09c5ab3380 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index 5c985b7892..f93d3d6b94 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index d632c106ee..af9faef144 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index 172f7a1fa5..c9411bcff6 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 20d86c53d1..17e75d0708 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index ef4f41a4a9..22f50c02b7 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 8c2c776035..5a91b6e729 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index e373ec5a02..44f300753c 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index b690bb2791..ccee8edbae 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index 7414b1ceae..9bee87f600 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index 39896951c8..aceaaf32f1 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 4a56c15d00..209120d33e 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 0cd3f5ce54..97a50ec9f6 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 30f8ab6cb2..0811628058 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index 00de0232f7..07484f6961 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 9e68fd897b..6996074140 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index eb9544b208..2b688e769e 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index e11e245542..740b3130a9 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index a13838d392..be0467b5cb 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index 60d03ac21b..d2df808a4e 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index ea8ea50ded..a8458ded95 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index db0be8a83e..32d3c032d5 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 0506bdbda3..2278652afb 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index 04d59e9e3a..d8f65115de 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index 8d4b12328e..2970784a82 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index aaa282bcf2..d6c62473e2 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index 01b68ac178..2260ddfa76 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index 5f2bfa92bf..bc862524a0 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index addda79793..2305d3dbad 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index a692a9d7a8..e2b5d4d9a6 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index a77172a14d..6d0b7b40de 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index 94ee25cfe7..ae7da72814 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index 98aa4fecb9..dd36c8b540 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index a610c6c118..e7d0d13510 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 600785b862..62629fd66c 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index a0bcaccea0..3c27d00110 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index f79f771c9d..a502f77abd 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index e0a7bf5256..7793777b0d 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 941b2a9929..128d528006 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index d56f825df6..18bfd4460b 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index c3b3cf57e5..3bfe921cb6 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index e95780838a..abd4ea5663 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 116803bec4..24633b513a 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index d443ebef8d..f3671db7f1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index f133bb04b0..356df928c1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index f6ccbbd825..1f3d0f7f15 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index c4047f537a..e72bc4b169 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index fb6026a986..149ddf73b5 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index 0708db30e9..c837ff6ae3 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 9d87a066fb..4874366105 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 7ee27b9e04..48551c741d 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index d70b1ef644..8abc38e92f 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 63ef248c23..2b35c78487 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index 56f35b7f9e..d4d4be6cd8 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index e4e2a77be3..1f48f3cb87 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index d24ee069ee..11c00f6131 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 8b8ede3d54..9874a5c25e 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index d6de63a38d..f8f040f88e 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 9d85f32b0b..517a6d692f 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index e5849c626f..84480b9f02 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index abc7fcedf6..9d36774a58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index d706b61e8a..f40934d0f8 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index 24208672fc..c40b5fd806 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 85dc10e780..564eb9afa7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index a65287c9ac..4b80b3969f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index 9e01b69ca4..c7b1e8643e 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 1458a1fab4..492e7a44c7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index bd0008ed0e..6902fe678a 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index a2cc81d227..a3497d6bca 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index 0c38af8982..533ef95663 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 8884be0048..8ce7350f58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 7fa34a35b3..7865759c03 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index b34555049f..b834c74894 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 5fd3d22677..265a3d12ef 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index 20d6d0c437..d31979578d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 7bca91f8b1..6e9f01258e 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index c3234d7d16..85305b69e0 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index f5faeb6cbf..c1e49109f4 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index d81c1a5c77..f35bdef35a 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index 912feccd44..dfc53edd9f 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 96b2ec875d..631fb56671 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index f736bfef17..33bbf8f7ec 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index bd3186645b..55d32ca1f5 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index 8de21ed713..b326d5e77f 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 9945a67db5..75b2f9d03a 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index eaeb4be83d..3775c53c7c 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index 24b0e33ea3..c9f5d05463 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index d82ca48260..04775362ee 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 80cfa49911..95d493570c 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -19,7 +19,7 @@ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 3f45c6e706..70df93939d 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index 90cdb89804..a21030a9eb 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 726004fcd5..7ea5d95389 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index 17143706ee..7fb0774b3c 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index 5db79474ed..58a98c70e1 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 6a5fa1f6b9..5ea99e50ac 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index eabcff2869..6169d2109b 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index d612365d1f..580ae063d3 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index d1453b3b8c..314d6c9dfd 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index 435f696feb..ebd7721aa6 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index 7931c7a4e9..b99b7dca32 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index 38e0cbbb2e..c3820ac902 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index 7ae164a822..c59cfe6ad9 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 32392ca58e..8e7d871987 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index a9343c6fcd..fb7a967028 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index 8c28d89797..ddb0371bf4 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index 33cb59051a..a87c93404e 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index 637af0dbb0..31b72fc622 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/Shubh152/talawa-admin/blob/17e2e86/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) From 49241eae610d1ed5373dc4d5fbe0ba87f9e5cce9 Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sun, 25 Feb 2024 22:30:31 +0530 Subject: [PATCH 12/16] fix lint errors --- README.md | 2 +- src/components/UserUpdate/UserUpdate.test.tsx | 22 ------------------- 2 files changed, 1 insertion(+), 23 deletions(-) diff --git a/README.md b/README.md index 08bc058846..5b26844ccb 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Core features include: - [Talawa Components](#talawa-components) -- [Documentation](#documentation) +- [Documentation -](#documentation--) - [Installation](#installation) diff --git a/src/components/UserUpdate/UserUpdate.test.tsx b/src/components/UserUpdate/UserUpdate.test.tsx index 2d69099482..1a4c4b3484 100644 --- a/src/components/UserUpdate/UserUpdate.test.tsx +++ b/src/components/UserUpdate/UserUpdate.test.tsx @@ -158,26 +158,4 @@ describe('Testing User Update', () => { expect(screen.getByPlaceholderText(/Email/i)).toBeInTheDocument(); expect(screen.getByText(/Display Image/i)).toBeInTheDocument(); }); - - test('should display warnings for blank form submission', async () => { - jest.spyOn(toast, 'warning'); - - render( - - - - - - - , - ); - - await wait(); - - userEvent.click(screen.getByText(/Save Changes/i)); - - expect(toast.warning).toHaveBeenCalledWith('First Name cannot be blank!'); - expect(toast.warning).toHaveBeenCalledWith('Last Name cannot be blank!'); - expect(toast.warning).toHaveBeenCalledWith('Email cannot be blank!'); - }); }); From f80d125c33662eb73c4528d0a8ceb950ada13633 Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sun, 3 Mar 2024 14:50:47 +0530 Subject: [PATCH 13/16] fix codecov coverage --- src/components/UserUpdate/UserUpdate.tsx | 50 ++++++++++++------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/src/components/UserUpdate/UserUpdate.tsx b/src/components/UserUpdate/UserUpdate.tsx index 897098d344..b4e77cd099 100644 --- a/src/components/UserUpdate/UserUpdate.tsx +++ b/src/components/UserUpdate/UserUpdate.tsx @@ -200,15 +200,15 @@ const UserUpdate: React.FC = ({
From d7b449bb63af1a00c8f0d0d5a765b7f77ac409a2 Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sat, 9 Mar 2024 20:46:29 +0530 Subject: [PATCH 14/16] fix coverage error --- README.md | 2 +- src/components/UserUpdate/UserUpdate.test.tsx | 3 +- src/components/UserUpdate/UserUpdate.tsx | 48 +++++++------------ 3 files changed, 18 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index a353ea7cf5..f522cb925a 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Core features include: - [Talawa Components](#talawa-components) -- [Documentation -](#documentation--) +- [Documentation](#documentation) - [Installation](#installation) diff --git a/src/components/UserUpdate/UserUpdate.test.tsx b/src/components/UserUpdate/UserUpdate.test.tsx index 1a4c4b3484..a32bef6e8a 100644 --- a/src/components/UserUpdate/UserUpdate.test.tsx +++ b/src/components/UserUpdate/UserUpdate.test.tsx @@ -136,8 +136,7 @@ describe('Testing User Update', () => { formData.lastName, ); userEvent.type(screen.getByPlaceholderText(/Email/i), formData.email); - expect(screen.getByRole('applangcode')).toBeInTheDocument(); - expect(screen.getByText('English')).toBeInTheDocument(); + userEvent.selectOptions(screen.getByTestId('applangcode'), 'Français'); userEvent.upload(screen.getByLabelText(/Display Image:/i), formData.image); await wait(); diff --git a/src/components/UserUpdate/UserUpdate.tsx b/src/components/UserUpdate/UserUpdate.tsx index 13f0ed50e1..ec1daf90c8 100644 --- a/src/components/UserUpdate/UserUpdate.tsx +++ b/src/components/UserUpdate/UserUpdate.tsx @@ -199,38 +199,22 @@ const UserUpdate: React.FC = ({
From 6cb2a46f759fdd4c0d9287166f5ffcf0f769e7ca Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sat, 9 Mar 2024 21:26:47 +0530 Subject: [PATCH 15/16] fix lint error --- src/components/UserUpdate/UserUpdate.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/UserUpdate/UserUpdate.tsx b/src/components/UserUpdate/UserUpdate.tsx index ec1daf90c8..33f7a17823 100644 --- a/src/components/UserUpdate/UserUpdate.tsx +++ b/src/components/UserUpdate/UserUpdate.tsx @@ -11,7 +11,7 @@ import { useLocation } from 'react-router-dom'; import { languages } from 'utils/languages'; import { toast } from 'react-toastify'; import { errorHandler } from 'utils/errorHandler'; -import { Dropdown, Form } from 'react-bootstrap'; +import { Form } from 'react-bootstrap'; import Loader from 'components/Loader/Loader'; import useLocalStorage from 'utils/useLocalstorage'; From c5e2709fddb4dcee500218fab707b4af42584573 Mon Sep 17 00:00:00 2001 From: KaleidoScope <121512095+Shubh152@users.noreply.github.com> Date: Sun, 10 Mar 2024 12:38:18 +0530 Subject: [PATCH 16/16] Revert package-lock.json --- package-lock.json | 103 ++++++++++++++++++++++++++++++++-------------- 1 file changed, 72 insertions(+), 31 deletions(-) diff --git a/package-lock.json b/package-lock.json index a44bf49de2..a51fdd8271 100644 --- a/package-lock.json +++ b/package-lock.json @@ -48,7 +48,7 @@ "react-icons": "^4.12.0", "react-infinite-scroll-component": "^6.1.0", "react-redux": "^7.2.5", - "react-router-dom": "^6.22.2", + "react-router-dom": "^6.21.3", "react-scripts": "5.0.1", "react-toastify": "^9.0.3", "redux": "^4.1.1", @@ -4523,14 +4523,6 @@ "tslib": "^2.4.0" } }, - "node_modules/@remix-run/router": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.15.3.tgz", - "integrity": "sha512-Oy8rmScVrVxWZVOpEF57ovlnhpZ8CCPlnIIumVcV9nFdiSIrus99+Lw78ekXyGvVDlIsFJbSfmSovJUhCWYV3w==", - "engines": { - "node": ">=14.0.0" - } - }, "node_modules/@restart/hooks": { "version": "0.4.10", "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.10.tgz", @@ -12031,11 +12023,16 @@ } }, "node_modules/history": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/history/-/history-5.3.0.tgz", - "integrity": "sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==", + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", "dependencies": { - "@babel/runtime": "^7.7.6" + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" } }, "node_modules/hoist-non-react-statics": { @@ -13165,6 +13162,11 @@ "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", "dev": true }, + "node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -17459,6 +17461,14 @@ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, + "node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dependencies": { + "isarray": "0.0.1" + } + }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -19622,35 +19632,46 @@ } }, "node_modules/react-router": { - "version": "6.22.3", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.22.3.tgz", - "integrity": "sha512-dr2eb3Mj5zK2YISHK++foM9w4eBnO23eKnZEDs7c880P6oKbrjz/Svg9+nxqtHQK+oMW4OtjZca0RqPglXxguQ==", + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", + "integrity": "sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==", "dependencies": { - "@remix-run/router": "1.15.3" - }, - "engines": { - "node": ">=14.0.0" + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" }, "peerDependencies": { - "react": ">=16.8" + "react": ">=15" } }, "node_modules/react-router-dom": { - "version": "6.22.3", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.22.3.tgz", - "integrity": "sha512-7ZILI7HjcE+p31oQvwbokjk6OA/bnFxrhJ19n82Ex9Ph8fNAq+Hm/7KchpMGlTgWhUxRHMMCut+vEtNpWpowKw==", + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz", + "integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==", "dependencies": { - "@remix-run/router": "1.15.3", - "react-router": "6.22.3" - }, - "engines": { - "node": ">=14.0.0" + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.3.4", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" }, "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" + "react": ">=15" } }, + "node_modules/react-router/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, "node_modules/react-scripts": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", @@ -20430,6 +20451,11 @@ "node": ">=4" } }, + "node_modules/resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, "node_modules/resolve-pkg-maps": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", @@ -22391,6 +22417,16 @@ "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==" }, + "node_modules/tiny-invariant": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", + "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" + }, + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -23161,6 +23197,11 @@ "spdx-expression-parse": "^3.0.0" } }, + "node_modules/value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",