Skip to content

Commit

Permalink
fix Single-quoted string interpolation in src/web5.ts (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevegee1 authored Nov 20, 2023
1 parent 3c62a78 commit 9af892a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/web5.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class Web5 {
// Set the stored identity as the connected DID.
connectedDid = identity.did;
} else {
throw new Error('connect() failed due to unexpected state: ${storedIdentities} stored identities');
throw new Error(`connect() failed due to unexpected state: ${storedIdentities} stored identities`);
}
}

Expand Down

0 comments on commit 9af892a

Please sign in to comment.