diff --git a/app/src/ui_home_nbgl.c b/app/src/ui_home_nbgl.c index b292be57f..172b0c8f6 100644 --- a/app/src/ui_home_nbgl.c +++ b/app/src/ui_home_nbgl.c @@ -30,9 +30,8 @@ void tz_ui_home_redisplay(void); -static const char *const infoTypes[] = {"Version", "Developer", "Copyright"}; -static const char *const infoContents[] - = {APPVERSION, "Tezos", "(c) 2023 "}; +static const char *const infoTypes[] = {"Version", "Developer"}; +static const char *const infoContents[] = {APPVERSION, "Tezos"}; enum { BLIND_SIGNING_TOKEN = FIRST_USER_TOKEN, @@ -47,7 +46,7 @@ navigation_cb_wallet(__attribute__((unused)) uint8_t page, switch (page) { case 0: content->type = INFOS_LIST; - content->infosList.nbInfos = 3; + content->infosList.nbInfos = 2; content->infosList.infoTypes = infoTypes; content->infosList.infoContents = infoContents; break; diff --git a/tests/integration/stax/snapshots/info.png b/tests/integration/stax/snapshots/info.png index 7dd6b2e80..41060b63b 100644 Binary files a/tests/integration/stax/snapshots/info.png and b/tests/integration/stax/snapshots/info.png differ