Skip to content

Commit 2f82309

Browse files
Version Packages
1 parent 03b6d0d commit 2f82309

File tree

3 files changed

+27
-26
lines changed

3 files changed

+27
-26
lines changed

.changeset/strong-snails-jam.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

packages/thirdweb/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# thirdweb
22

3+
## 5.78.0
4+
5+
### Minor Changes
6+
7+
- [#5604](https://github.com/thirdweb-dev/js/pull/5604) [`03b6d0d`](https://github.com/thirdweb-dev/js/commit/03b6d0d516c7fb809ad66f1021281a74b48356e1) Thanks [@ElasticBottle](https://github.com/ElasticBottle)! - Support the ability to unlink accounts for in app wallet with more than 1 linked account.
8+
9+
It's supported out of the box in the connect UI.
10+
11+
For typescript users, the following code snippet is a simple example of how it'd work.
12+
13+
```typescript
14+
import { inAppWallet } from "thirdweb/wallets";
15+
16+
const wallet = inAppWallet();
17+
wallet.connect({ strategy: "google" });
18+
19+
const profiles = await getProfiles({
20+
client,
21+
});
22+
23+
const updatedProfiles = await unlinkProfile({
24+
client,
25+
profileToUnlink: profiles[1], // assuming there is more than 1 profile linked to the user.
26+
});
27+
```
28+
329
## 5.77.0
430

531
### Minor Changes

packages/thirdweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.77.0",
3+
"version": "5.78.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)