@siphoyawe/mina-cli 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -161,7 +161,8 @@ function Select({
|
|
|
161
161
|
label,
|
|
162
162
|
limit
|
|
163
163
|
}) {
|
|
164
|
-
const inkItems = items.map((item) => ({
|
|
164
|
+
const inkItems = items.map((item, index) => ({
|
|
165
|
+
key: `${item.label}-${String(item.value)}-${index}`,
|
|
165
166
|
label: item.label,
|
|
166
167
|
value: item
|
|
167
168
|
}));
|
|
@@ -3499,7 +3500,7 @@ function ConfigCommand({ action, key: configKey, value }) {
|
|
|
3499
3500
|
}
|
|
3500
3501
|
|
|
3501
3502
|
// src/index.tsx
|
|
3502
|
-
var VERSION = "1.2.
|
|
3503
|
+
var VERSION = "1.2.2";
|
|
3503
3504
|
var program = new Command();
|
|
3504
3505
|
program.name("mina").description("Mina Bridge CLI - Bridge assets from any chain to Hyperliquid").version(VERSION, "-v, --version", "Display the current version").helpOption("-h, --help", "Display help information");
|
|
3505
3506
|
program.command("wizard").description("Launch the interactive bridge wizard").action(() => {
|