Skip to content

Commit

Permalink
fix: did creation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayteekay committed Oct 20, 2023
1 parent 467004b commit 4b03072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-native/lib/didHooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function useDIDManagement() {
case 'diddock':
return didProvider.createDIDock({ address, name });
case 'didkey':
return didProvider.createDidKey({ derivePath, name, type });
return didProvider.createDIDKey({ derivePath, name, type });
default:
throw Error('Invalid DID type');
}
Expand Down

0 comments on commit 4b03072

Please sign in to comment.