We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf2103 commit 5ec349fCopy full SHA for 5ec349f
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# bedrock-web-wallet ChangeLog
2
3
+## 14.6.4 - 2025-mm-dd
4
+
5
+### Fixed
6
+- Removed debug log.
7
8
## 14.6.3 - 2024-10-31
9
10
### Fixed
lib/helpers.js
@@ -145,9 +145,12 @@ export const createProfile = async ({
145
}
146
147
const t1 = Date.now();
148
- console.log('profile creation time', t1 - t0, 'ms');
149
150
- return {profileAgent: user || profileAgent, profile: updatedProfile};
+ return {
+ profileAgent: user || profileAgent,
151
+ profile: updatedProfile,
152
+ creationTimeMs: t1 - t0
153
+ };
154
};
155
156
export async function openFirstPartyWindow(event) {
0 commit comments