Unify the terminology for approval screens between ERC-721 & 1155

This commit is contained in:
Alexandre Paillier
2022-02-10 09:53:13 +01:00
parent 6bc99e8b98
commit 66ffbc42d4

View File

@@ -15,11 +15,11 @@ static void set_approval_ui(ethQueryContractUI_t *msg, erc721_context_t *context
chainConfig->chainId);
break;
case 1:
strlcpy(msg->title, "To Spend Your", msg->titleLength);
strlcpy(msg->title, "To Manage Your", msg->titleLength);
if (msg->item1) {
strlcpy(msg->msg, (const char *) &msg->item1->nft.collectionName, msg->msgLength);
} else {
strlcpy(msg->msg, "Not found", msg->msgLength);
strlcpy(msg->msg, "Not Found", msg->msgLength);
}
break;
case 2: