From c3f966790c3a7b0bc3435e069303d97019e6651a Mon Sep 17 00:00:00 2001 From: Martin Zwigl Date: Fri, 21 Mar 2025 22:36:55 +0100 Subject: [PATCH] restore original layout --- apps/coin_info/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/coin_info/app.js b/apps/coin_info/app.js index 4b874aa3b..9bee2bbf0 100644 --- a/apps/coin_info/app.js +++ b/apps/coin_info/app.js @@ -149,12 +149,16 @@ function showDetails() { `; E.showAlert(msg, "Token Details").then(function() { // print("Ok pressed"); + g.clear(); + layout.render(); }); }) .catch(err => { const msg = `Failed to fetch details for ${token.toUpperCase()}`; E.showAlert(msg, "Error").then(function() { // print("Ok pressed"); + g.clear(); + layout.render(); }); }); }