diff --git a/Libraries/LogBox/Data/LogBoxData.js b/Libraries/LogBox/Data/LogBoxData.js index cb3fd9cbd3f4ec..2ca6f56a640248 100644 --- a/Libraries/LogBox/Data/LogBoxData.js +++ b/Libraries/LogBox/Data/LogBoxData.js @@ -191,6 +191,9 @@ function appendNewLog(newLog) { if (addPendingLog && status !== 'PENDING') { addPendingLog(); clearTimeout(optimisticTimeout); + } else if (status !== 'PENDING') { + // The log has already been added but we need to trigger a render. + handleUpdate(); } }); } else {