-
-
Notifications
You must be signed in to change notification settings - Fork 816
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature Added: An option for users to leave the Organization (Fixes #…
…1873) (#2629) * Fixed: issue-#1873 * Fixed: issue-#1873 * Fixed: issue-#1873 * Fixed: issue-#1873 * Not title changed to title * Ensure case-insensitive email verification for leaving organization * Null check for organization data added * Refetching of orgs added after leaving org * GraphQL error scenarios to test cases Added * GraphQL error scenarios to test cases Added 1 * Downgrade vitest to 2.1.5 to resolve peer dependency conflict * fixed parsing error 1 * TSDoc comment added in LeaveOrganization.tsx 5 * LeaveOrganization.test.tsx file updated 1 * suggested changes are made * suggested changes are made 2 * optimizing testing file 1 * optimizing testing file 2 * optimizing testing file 2-a * Fixed: issue-#1873 * Fixed: issue-#1873 * Fixed: issue-#1873 * Fixed: issue-#1873 * Not title changed to title * Ensure case-insensitive email verification for leaving organization * Null check for organization data added * Refetching of orgs added after leaving org * GraphQL error scenarios to test cases Added * GraphQL error scenarios to test cases Added 1 * Downgrade vitest to 2.1.5 to resolve peer dependency conflict * fixed parsing error 1 * TSDoc comment added in LeaveOrganization.tsx 5 * LeaveOrganization.test.tsx file updated 1 * suggested changes are made * suggested changes are made 2 * optimizing testing file 1 * optimizing testing file 2 * optimizing testing file 2-a * suggested changes are made 3 * optimizing test file 3 * optimizing test file 3-a * optimizing test file 3-b * optimizing test file 3-c * optimizing test file 3-d * optimizing test file 3-e
- Loading branch information
Showing
13 changed files
with
840 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/screens/UserPortal/LeaveOrganization/LeaveOrganization.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
.modal-dialog { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
margin: 0; | ||
} | ||
|
||
.modal-content { | ||
width: 100%; | ||
max-width: 500px; | ||
} | ||
|
||
.modal-body { | ||
text-align: center; | ||
} | ||
|
||
.modal-header, | ||
.modal-footer { | ||
justify-content: center; | ||
text-align: center; | ||
} | ||
|
||
.confirmation { | ||
text-align: center; | ||
margin-top: 30px; | ||
} |
Oops, something went wrong.