Skip to content

Commit 5df544c

Browse files
committed
Fix promise
1 parent 251cb33 commit 5df544c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/ic_vetkeys/src/utils/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ export class DerivedKeyMaterial {
568568
this.#raw = raw;
569569
}
570570

571-
static async fromCryptoKey(raw: CryptoKey): DerivedKeyMaterial {
571+
static async fromCryptoKey(raw: CryptoKey): Promise<DerivedKeyMaterial> {
572572
const derivationParams = {
573573
name: "HKDF",
574574
hash: "SHA-256",

0 commit comments

Comments
 (0)