diff --git a/src/screens/OrganizationDashboard/OrganizationDashboard.test.tsx b/src/screens/OrganizationDashboard/OrganizationDashboard.test.tsx index cb221f94ce..ab65e3cdd8 100644 --- a/src/screens/OrganizationDashboard/OrganizationDashboard.test.tsx +++ b/src/screens/OrganizationDashboard/OrganizationDashboard.test.tsx @@ -147,4 +147,64 @@ describe('Organisation Dashboard Page', () => { await wait(); expect(window.location).toBeAt('/orglist'); }); + + test('Testing useEffect hook and error redirection', async () => { + // eslint-disable-next-line jest/no-export + const mockEventData = { + eventsByOrganizationConnection: [ + { startDate: new Date().toISOString() }, // Assuming an event is upcoming + ], + }; + // Render the component with mock data + await act(async () => { + render( + + + + + + + + + + ); + }); + + // Wait for useEffect to be executed + await wait(); + + // Check if the hook updates the state with upcoming events + expect(screen.getByText('Upcoming Events')).toBeInTheDocument(); + expect(screen.getByText('Latest Posts')).toBeInTheDocument(); + + // Check if tempUpcomingEvents logic is executed correctly + const startDate = new Date( + mockEventData.eventsByOrganizationConnection[0].startDate + ); + const now = new Date(); + const tempUpcomingEvents = []; + if (startDate > now) { + tempUpcomingEvents.push(mockEventData.eventsByOrganizationConnection[0]); + } + expect(tempUpcomingEvents).toHaveLength(0); + + // Test conditional redirection when there's an error + await act(async () => { + render( + + + + + + + + + + ); + }); + + await wait(); + + expect(window.location.pathname).toBe('/orglist'); + }); }); diff --git a/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts b/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts index 7f9959efd5..4a3732d6a9 100644 --- a/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts +++ b/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts @@ -74,6 +74,19 @@ export const MOCKS = [ }, }, }, + { + request: { + query: ORGANIZATION_EVENT_CONNECTION_LIST, + variables: { organization_id: 'your_organization_id' }, + }, + result: { + data: { + eventsByOrganizationConnection: [ + { startDate: new Date().toISOString() }, // Assuming an event is upcoming + ], + }, + }, + }, { request: { query: ORGANIZATION_POST_CONNECTION_LIST, 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 b0a4ef91ac..cf033ebca3 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/780d70f/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 d9d0d10633..ac88d4e95d 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/780d70f/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 b249f303c9..0f3ef7e1ba 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/780d70f/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 56cca0a386..7b41b57875 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/780d70f/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 591c520dbf..05379177b2 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/780d70f/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 f41b3736af..2ea26c1d23 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/780d70f/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 accc6ba80b..cb34ba3bab 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/780d70f/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 1a58c53859..ba3c15473c 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/780d70f/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 0efc65b454..4164c36daa 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/780d70f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 50b82d1a9f..b8f23ad40e 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/780d70f/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 374ac1becb..4bab448103 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:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L16) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:16](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L16) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L24) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:24](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L24) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 76bc2d284d..4f7062f779 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/780d70f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 7ece205d0f..1fff823100 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:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L19) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:19](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L19) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index f7f88494dc..596284316e 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:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawer/LeftDrawer.tsx#L15) +[src/components/LeftDrawer/LeftDrawer.tsx:15](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawer/LeftDrawer.tsx#L15) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawer/LeftDrawer.tsx#L17) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawer/LeftDrawer.tsx#L16) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index f3f18316a9..886f08f2da 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/780d70f/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 61ad9fa271..6980f3db77 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/780d70f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 a510deaa97..300b4944e5 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/780d70f/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 4393e9eef9..d172163efb 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/780d70f/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 60ecc3e5c5..15cd2c31f2 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/780d70f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 755cbf06c2..2b658f1f96 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/780d70f/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 38fa10bff2..53f5b7bb30 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/780d70f/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 bba9b00369..47a2d6624b 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/780d70f/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 8cb8b15e86..518029df25 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/780d70f/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 c492fb31d9..6d3b9de720 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/780d70f/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 7a93c43f91..07ee9f5d46 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/780d70f/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 52c44d5d72..7c58f2c159 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/780d70f/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 e000366bda..88256b46c0 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/780d70f/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 8e2dde7baf..c6d8795335 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/780d70f/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 e1e09eef14..b02dc2b017 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/780d70f/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 0c1c2f007e..7d09a554ff 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/780d70f/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 e2541464d2..490bbdbb22 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/780d70f/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 8774a62aac..164bac0f9d 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/780d70f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 3f15d94095..675422f43e 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/780d70f/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 2ccaa0e4fe..8f4a76d118 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/780d70f/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 b1bd8632a5..f8c0a4d9aa 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/780d70f/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 ae64538c60..faf44b2093 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/780d70f/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 591a8592d8..29d9a94cd3 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/780d70f/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 7542028e65..1241cd7132 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/780d70f/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 9718edf22c..77bdbdf5fb 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/780d70f/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 392054db4b..8968cfca7b 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/780d70f/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 3008051686..6561334325 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:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/DeleteOrg/DeleteOrg.tsx#L14) +[src/components/DeleteOrg/DeleteOrg.tsx:14](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/DeleteOrg/DeleteOrg.tsx#L14) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 5e3f32c05c..b651e6af73 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/780d70f/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 653e41d0f3..47fb14dea0 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/780d70f/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 bef19dedbe..32f55122b2 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/780d70f/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 8c6c19855c..08ff22b134 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/780d70f/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 fac26707b9..aa3d0ec5f7 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/780d70f/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 c1549b5bc9..bca6aa7aae 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/780d70f/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 e00b0e54dc..bf37086561 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/780d70f/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 05d3249dd8..5a5d69505f 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/780d70f/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 71d4ce7587..8b25445c16 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/780d70f/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 f96abfbb2a..d34e0c21b8 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/780d70f/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 253ff2467b..0e963209cc 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/780d70f/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 7ad05488ea..bc795f7263 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:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L28) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:28](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L28) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index a458ad48da..b9ab6975fd 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/780d70f/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 9256f4bd9e..16c4cc7ca4 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:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L26) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:26](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L26) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index 5ec8598e98..4c744ef8e9 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:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/LeftDrawer/LeftDrawer.tsx#L20) +[src/components/LeftDrawer/LeftDrawer.tsx:20](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/LeftDrawer/LeftDrawer.tsx#L20) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index dd1fc78ff6..83c74c1cbc 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/780d70f/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 21a9f2a1c6..5d83c39ef7 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/780d70f/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 298201317f..9aae2ed9f7 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/780d70f/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 444d81042d..f853495c70 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/780d70f/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 e2a7f36aa8..94ba432120 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/780d70f/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 1ab2d2aac6..2e95695ee2 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/780d70f/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 2d07009c24..7a3eeef43c 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/780d70f/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 6a05f1c308..21607361de 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/780d70f/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 d5d5e997c3..84bb1ddff6 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/780d70f/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 2f6ceeb261..94089a3aae 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/780d70f/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 2f35e1494a..cfc94edf8e 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/780d70f/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 036a9d0a58..5918ac7f87 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/780d70f/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 bf59904ed0..cdd243cd44 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/780d70f/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 092024ee3e..097863827b 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/780d70f/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 67d253690e..9b0421fc99 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/780d70f/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 f91aba5eeb..edd25227e2 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/780d70f/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 2e9ff6f3ba..57ccb82f47 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/780d70f/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 08ef721e5a..653e08a930 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/780d70f/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 b30c26522b..ec08538180 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/780d70f/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 2080d44dd2..ef2b784e4c 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/780d70f/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 1f66d2888d..5680adb37b 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/780d70f/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 1264a1b3b2..afb7fe8e12 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/780d70f/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 46af04bfe6..dcaa3d5673 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:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/SecuredRoute/SecuredRoute.tsx#L5) +[src/components/SecuredRoute/SecuredRoute.tsx:5](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/SecuredRoute/SecuredRoute.tsx#L5) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 65ab09a54d..d3b1aa6170 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/780d70f/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 42c4642ddf..d7992c66f4 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/780d70f/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 931ab3a764..5334be8c00 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/780d70f/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 f7ccdfc3b3..9938e7fe3d 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/780d70f/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 562e127523..12b7a802e0 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/780d70f/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 514dd4f85e..d529f4f504 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:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/UserPortal/CommentCard/CommentCard.tsx#L26) +[src/components/UserPortal/CommentCard/CommentCard.tsx:26](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/UserPortal/CommentCard/CommentCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index 502e425139..b1dd4acfc6 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/780d70f/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 fb697e956b..34d44200ce 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/780d70f/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 9da596d3b7..92bd2a7b61 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:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/UserPortal/EventCard/EventCard.tsx#L36) +[src/components/UserPortal/EventCard/EventCard.tsx:36](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/UserPortal/EventCard/EventCard.tsx#L36) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index d6f2db3c22..2f2848d2bc 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:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/UserPortal/Login/Login.tsx#L19) +[src/components/UserPortal/Login/Login.tsx:19](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/UserPortal/Login/Login.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index c22ab972c9..19d4d8e6c8 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/780d70f/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 2e8d4a810e..034f3258bc 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:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L29) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:29](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L29) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 5b3b0dfdaf..bcdbaa8101 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/780d70f/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 f1d33ee924..96ffacee61 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/780d70f/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 913cd00bdd..13cd9331e9 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:70](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/UserPortal/PostCard/PostCard.tsx#L70) +[src/components/UserPortal/PostCard/PostCard.tsx:70](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/UserPortal/PostCard/PostCard.tsx#L70) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index d154c1ff49..3a045e6574 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/780d70f/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 4b0e9c399d..edc8216dbc 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/780d70f/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 bb7eea903e..68efc5c8b9 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:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L4) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:4](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L4) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index c5c46b0053..892b56d22c 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:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L15) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:15](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index a128f645ac..6afbb42c4f 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:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L15) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:15](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 2891503d9d..18bc7b3f66 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:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/components/UserUpdate/UserUpdate.tsx#L26) +[src/components/UserUpdate/UserUpdate.tsx:26](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/components/UserUpdate/UserUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index d369e62bcf..3eeeb5d2d3 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/780d70f/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 d88e7ff73c..aa136731e4 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/780d70f/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 7f7e5a2741..48a5c70548 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/780d70f/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 1ed890990e..ffef2496a0 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/780d70f/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 3a137ba604..2205b0d131 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/780d70f/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 31c375d0f8..4ae83fbbcb 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/780d70f/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 0d2a66f050..f61da5e8ec 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/780d70f/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 837bb0a01b..b2071ee3e5 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:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/ForgotPassword/ForgotPassword.tsx#L21) +[src/screens/ForgotPassword/ForgotPassword.tsx:21](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/ForgotPassword/ForgotPassword.tsx#L21) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 3bd8cd86df..dd7b2d7d32 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:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/LoginPage/LoginPage.tsx#L43) +[src/screens/LoginPage/LoginPage.tsx:43](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/LoginPage/LoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index c5b6a81442..c459c03ddd 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:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/MemberDetail/MemberDetail.tsx#L25) +[src/screens/MemberDetail/MemberDetail.tsx:25](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/MemberDetail/MemberDetail.tsx#L25) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:325](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/MemberDetail/MemberDetail.tsx#L325) +[src/screens/MemberDetail/MemberDetail.tsx:325](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/MemberDetail/MemberDetail.tsx#L325) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:317](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/MemberDetail/MemberDetail.tsx#L317) +[src/screens/MemberDetail/MemberDetail.tsx:317](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/MemberDetail/MemberDetail.tsx#L317) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index 697e3e58ba..fdf2619028 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/780d70f/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 a6a9e2a30c..d488252653 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:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/OrgList/OrgList.tsx#L33) +[src/screens/OrgList/OrgList.tsx:33](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/OrgList/OrgList.tsx#L33) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 3d59f87907..49c1335ead 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/780d70f/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 c92229169a..7523ef161f 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/780d70f/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 7cdd68e244..3421bc4414 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/780d70f/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 312179e73a..ee1ea5b141 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/780d70f/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 6596103fd1..f1f588c962 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/780d70f/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 36076bb899..21ed78c763 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/780d70f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:210](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L210) ___ @@ -28,14 +28,14 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:294](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L294) ___ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `eventsByOrganizationConnection?`: `undefined` ; `organizations`: \{ `_id`: `number` = 123; `address`: \{ `city`: `string` = 'Delhi'; `countryCode`: `string` = 'IN'; `dependentLocality`: `string` = 'Some Dependent Locality'; `line1`: `string` = '123 Random Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = '110001'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Delhi' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: \{ `_id`: `string` = '789'; `email`: `string` = 'stevesmith@gmail.com'; `firstName`: `string` = 'Steve'; `lastName`: `string` = 'Smith' \}[] ; `creator`: \{ `email`: `string` = ''; `firstName`: `string` = ''; `lastName`: `string` = '' \} ; `description`: `string` = 'This is a Dummy Organization'; `image`: `string` = ''; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'janedoe@gmail.com'; `firstName`: `string` = 'Jane'; `lastName`: `string` = 'Doe' \} \}[] ; `name`: `string` = 'Dummy Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `postsByOrganizationConnection?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = ORGANIZATION\_POST\_CONNECTION\_LIST; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `eventsByOrganizationConnection?`: `undefined` ; `organizations?`: `undefined` ; `postsByOrganizationConnection`: \{ `edges`: \{ `_id`: `string` = '6411e54835d7ba2344a78e29'; `commentCount`: `number` = 2; `comments`: \{ `__typename`: `string` = 'Comment'; `_id`: `string` = '64eb13beca85de60ebe0ed0e'; `creator`: \{ `__typename`: `string` = 'User'; `_id`: `string` = '63d6064458fce20ee25c3bf7'; `email`: `string` = 'test@gmail.com'; `firstName`: `string` = 'Noble'; `lastName`: `string` = 'Mittal' \} ; `likeCount`: `number` = 1; `likedBy`: \{ `_id`: `number` = 1 \}[] ; `text`: `string` = 'Yes, that is $50' \}[] ; `createdAt`: `Dayjs` ; `creator`: \{ `_id`: `string` = '640d98d9eb6a743d75341067'; `email`: `string` = 'adidacreator1@gmail.com'; `firstName`: `string` = 'Aditya'; `lastName`: `string` = 'Shelke' \} ; `imageUrl`: ``null`` = null; `likeCount`: `number` = 0; `likedBy`: \{ `_id`: `string` = '63d6064458fce20ee25c3bf7'; `firstName`: `string` = 'Comment'; `lastName`: `string` = 'Likkert' \}[] ; `pinned`: `boolean` = false; `text`: `string` = 'Hey, anyone saw my watch that I left at the office?'; `title`: `string` = 'Post 2'; `videoUrl`: ``null`` = null \}[] \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = ORGANIZATION\_EVENT\_CONNECTION\_LIST; `variables`: \{ `organization_id`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: \{ `_id`: `string` = '1'; `allDay`: `boolean` = false; `description`: `string` = 'Sample Description'; `endDate`: `string` = '2023-10-29T23:59:59.000Z'; `endTime`: `string` = '17:00:00'; `isPublic`: `boolean` = true; `isRegisterable`: `boolean` = true; `location`: `string` = 'Sample Location'; `recurring`: `boolean` = false; `startDate`: `string` = '2023-10-29T00:00:00.000Z'; `startTime`: `string` = '08:00:00'; `title`: `string` = 'Sample Event' \}[] ; `organizations?`: `undefined` ; `postsByOrganizationConnection?`: `undefined` \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `eventsByOrganizationConnection?`: `undefined` ; `organizations`: \{ `_id`: `number` = 123; `address`: \{ `city`: `string` = 'Delhi'; `countryCode`: `string` = 'IN'; `dependentLocality`: `string` = 'Some Dependent Locality'; `line1`: `string` = '123 Random Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = '110001'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Delhi' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: \{ `_id`: `string` = '789'; `email`: `string` = 'stevesmith@gmail.com'; `firstName`: `string` = 'Steve'; `lastName`: `string` = 'Smith' \}[] ; `creator`: \{ `email`: `string` = ''; `firstName`: `string` = ''; `lastName`: `string` = '' \} ; `description`: `string` = 'This is a Dummy Organization'; `image`: `string` = ''; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'janedoe@gmail.com'; `firstName`: `string` = 'Jane'; `lastName`: `string` = 'Doe' \} \}[] ; `name`: `string` = 'Dummy Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `postsByOrganizationConnection?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = ORGANIZATION\_EVENT\_CONNECTION\_LIST; `variables`: \{ `organization_id`: `string` = 'your\_organization\_id' \} \} ; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: \{ `startDate`: `string` \}[] ; `organizations?`: `undefined` ; `postsByOrganizationConnection?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = ORGANIZATION\_POST\_CONNECTION\_LIST; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `eventsByOrganizationConnection?`: `undefined` ; `organizations?`: `undefined` ; `postsByOrganizationConnection`: \{ `edges`: \{ `_id`: `string` = '6411e54835d7ba2344a78e29'; `commentCount`: `number` = 2; `comments`: \{ `__typename`: `string` = 'Comment'; `_id`: `string` = '64eb13beca85de60ebe0ed0e'; `creator`: \{ `__typename`: `string` = 'User'; `_id`: `string` = '63d6064458fce20ee25c3bf7'; `email`: `string` = 'test@gmail.com'; `firstName`: `string` = 'Noble'; `lastName`: `string` = 'Mittal' \} ; `likeCount`: `number` = 1; `likedBy`: \{ `_id`: `number` = 1 \}[] ; `text`: `string` = 'Yes, that is $50' \}[] ; `createdAt`: `Dayjs` ; `creator`: \{ `_id`: `string` = '640d98d9eb6a743d75341067'; `email`: `string` = 'adidacreator1@gmail.com'; `firstName`: `string` = 'Aditya'; `lastName`: `string` = 'Shelke' \} ; `imageUrl`: ``null`` = null; `likeCount`: `number` = 0; `likedBy`: \{ `_id`: `string` = '63d6064458fce20ee25c3bf7'; `firstName`: `string` = 'Comment'; `lastName`: `string` = 'Likkert' \}[] ; `pinned`: `boolean` = false; `text`: `string` = 'Hey, anyone saw my watch that I left at the office?'; `title`: `string` = 'Post 2'; `videoUrl`: ``null`` = null \}[] \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = ORGANIZATION\_EVENT\_CONNECTION\_LIST; `variables`: \{ `organization_id`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: \{ `_id`: `string` = '1'; `allDay`: `boolean` = false; `description`: `string` = 'Sample Description'; `endDate`: `string` = '2023-10-29T23:59:59.000Z'; `endTime`: `string` = '17:00:00'; `isPublic`: `boolean` = true; `isRegisterable`: `boolean` = true; `location`: `string` = 'Sample Location'; `recurring`: `boolean` = false; `startDate`: `string` = '2023-10-29T00:00:00.000Z'; `startTime`: `string` = '08:00:00'; `title`: `string` = 'Sample Event' \}[] ; `organizations?`: `undefined` ; `postsByOrganizationConnection?`: `undefined` \} \} \})[] #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 106b0df41e..8d4940c29d 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:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/OrganizationEvents/OrganizationEvents.tsx#L28) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:28](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/OrganizationEvents/OrganizationEvents.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index a4043ea439..ac050398eb 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/780d70f/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 9bb784216d..3a49aad914 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/780d70f/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 abc66e07c3..850af94f96 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/780d70f/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 c4fc003814..a0af88ce98 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/780d70f/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 ff1d4469e2..fa7d6f2278 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:49](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/UserPortal/Events/Events.tsx#L49) +[src/screens/UserPortal/Events/Events.tsx:49](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/UserPortal/Events/Events.tsx#L49) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index 36cbead1d8..26b7f0d84f 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:78](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/UserPortal/Home/Home.tsx#L78) +[src/screens/UserPortal/Home/Home.tsx:78](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/UserPortal/Home/Home.tsx#L78) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index 75acc08cb4..b50c3ef20e 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:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/UserPortal/Organizations/Organizations.tsx#L24) +[src/screens/UserPortal/Organizations/Organizations.tsx:24](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/UserPortal/Organizations/Organizations.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 10e2a536d5..2b08b0b86c 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/780d70f/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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 9524e9a1f1..5f2669f4f9 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:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/UserPortal/Settings/Settings.tsx#L15) +[src/screens/UserPortal/Settings/Settings.tsx:15](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/UserPortal/Settings/Settings.tsx#L15) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index a08771ec0f..7de5b62c92 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:42](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L42) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:42](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L42) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index 8dad8a7d76..9aa3cfa1c1 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:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/780d70f/src/screens/Users/Users.tsx#L23) +[src/screens/Users/Users.tsx:23](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/Users/Users.tsx#L23) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index db99520fe5..89c5b748fe 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/780d70f/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/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/780d70f/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/Sauradip07/talawa-admin/blob/a0491fe/src/screens/Users/UsersMocks.ts#L233)