Skip to content

Commit

Permalink
Merge pull request #116 from supertokens/fix-user-delete
Browse files Browse the repository at this point in the history
fix: Update copy when deleting a user
  • Loading branch information
rishabhpoddar authored Sep 18, 2023
2 parents 1d0f7c4 + a7cd59f commit af92f88
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.8.1] - 2023-09-18

- Updates the text for the popup that shows when deleting a user to explain that it will also delete all linked accounts

## [0.8.0] - 2023-09-14

- Adds support for account linking
Expand Down
2 changes: 1 addition & 1 deletion build/static/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dashboard",
"version": "0.8.0",
"version": "0.8.1",
"private": true,
"dependencies": {
"@babel/core": "^7.16.0",
Expand Down
2 changes: 2 additions & 0 deletions src/ui/components/userDetail/userDetailForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,8 @@ export const UserDeleteConfirmation: FC<UserDeleteConfirmationProps> = ({ user,
<p>
To delete the user, please confirm by typing the {inputType}: <span>{informationToEnter}</span> below
</p>
<p>{""}</p>
<p>This will also delete any accounts linked to this user</p>
<div className="user-delete-input-container">
<InputField
type="text"
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
* under the License.
*/

export const package_version = "0.8.0";
export const package_version = "0.8.1";

0 comments on commit af92f88

Please sign in to comment.