Skip to content

Commit a22485f

Browse files
committed
Fix variable interpolation
1 parent d7882b1 commit a22485f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/autostake/index.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ export default function Autostake(mnemonic, opts) {
4949
})
5050
}
5151
if (success || skipped) {
52-
return health.success('Autostake finished for ${data.prettyName}')
52+
return health.success(`Autostake finished for ${data.prettyName}`)
5353
} else {
54-
return health.failed('Autostake failed for ${data.prettyName}')
54+
return health.failed(`Autostake failed for ${data.prettyName}`)
5555
}
5656
}
5757
})

0 commit comments

Comments
 (0)