Skip to content

Commit 25b61c3

Browse files
committed
style
1 parent 11105b0 commit 25b61c3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/store/Accounts.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,11 @@ export class Accounts implements IModule {
336336
new Encryption(wordArray.toString())
337337
);
338338
// if not uuidv4 regen
339-
if (/[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}/i.test(entry.hash)) {
339+
if (
340+
/[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}/i.test(
341+
entry.hash
342+
)
343+
) {
340344
removeHashes.push(entry.hash);
341345
entry.genUUID();
342346
}

0 commit comments

Comments
 (0)