Commit 5560698 1 parent be181de commit 5560698 Copy full SHA for 5560698
File tree 4 files changed +15
-7
lines changed
app/src/systems/Account/services
playwright-utils/src/fixtures
4 files changed +15
-7
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " fuels-wallet " : patch
3
+ ---
4
+
5
+ chore: reduce reported data to sentry
Original file line number Diff line number Diff line change
1
+ ---
2
+ " @fuels/playwright-utils " : patch
3
+ ---
4
+
5
+ chore: update wallet version
Original file line number Diff line number Diff line change @@ -257,14 +257,12 @@ export class AccountService {
257
257
} = await AccountService . fetchRecoveryState ( ) ;
258
258
259
259
if ( needsRecovery ) {
260
- // biome-ignore lint/suspicious/noExplicitAny: <explanation>
261
- const dataToLog : any = {
262
- backupAccounts : JSON . stringify ( backupAccounts ) ,
263
- backupNetworks : JSON . stringify ( backupNetworks ) ,
264
- } ;
265
-
266
260
( async ( ) => {
261
+ // biome-ignore lint/suspicious/noExplicitAny: <explanation>
262
+ const dataToLog : any = { } ;
267
263
try {
264
+ dataToLog . backupAccounts = JSON . stringify ( backupAccounts ?. map ( ( account ) => account ?. data ?. address ) || [ ] ) ;
265
+ dataToLog . backupNetworks = JSON . stringify ( backupNetworks || [ ] ) ;
268
266
// try getting data from indexedDB (outside of dexie) to check if it's also corrupted
269
267
const testNoDexieDbData = await getTestNoDexieDbData ( ) ;
270
268
dataToLog . testNoDexieDbData = testNoDexieDbData ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const test = base.extend<{
9
9
pathToExtension : string ;
10
10
fuelWalletVersion : string ;
11
11
} > ( {
12
- fuelWalletVersion : '0.21.0 ' ,
12
+ fuelWalletVersion : '0.42.3 ' ,
13
13
pathToExtension : async ( { fuelWalletVersion } , use ) => {
14
14
const fuelPath = await downloadFuel ( fuelWalletVersion ) ;
15
15
await use ( fuelPath ) ;
You can’t perform that action at this time.
0 commit comments