Skip to content

Commit 00413a5

Browse files
committed
Fix derivation path options
1 parent 5a2e5f4 commit 00413a5

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/modules/check/derivation-path.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,13 @@ const errorMsgStyles = `
6161
color: #e2504a;
6262
`
6363

64-
function derivationPath(options: {
65-
heading: string
66-
description: string
67-
icon: string
68-
}) {
64+
function derivationPath(
65+
options: {
66+
heading?: string
67+
description?: string
68+
icon?: string
69+
} = {}
70+
) {
6971
const { heading, description, icon } = options
7072

7173
let state = {

0 commit comments

Comments
 (0)