fix specter diy capitalization

This commit is contained in:
Craig Raw 2025-06-07 11:22:44 +02:00
parent ad02b8a33c
commit 13e1fafbe8

View file

@ -172,6 +172,8 @@ public enum WalletModel {
word = "BitBox";
} else if(word.equals(ONEKEY_PRO.getType())) {
word = "OneKey";
} else if(word.equals("diy")) {
word = "DIY";
}
builder.append(Character.toUpperCase(word.charAt(0)));
builder.append(word.substring(1));