Skip to content

Commit 3620394

Browse files
committed
fix: remove unnecessary await calling cipherProvider.enableDecryption
1 parent 3a5cb71 commit 3620394

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/invoice-dashboard/src/lib/view-requests.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@
468468
) {
469469
try {
470470
// Use the stored session key and signature to restore the session
471-
await cipherProvider.enableDecryption(true);
471+
cipherProvider.enableDecryption(true);
472472
sliderValueForDecryption = "on";
473473
localStorage.setItem("isDecryptionEnabled", "true");
474474
await getRequests(currentAccount, requestNetwork);

0 commit comments

Comments
 (0)