From eda54b65621acf78e58efe72f39d2feadd336619 Mon Sep 17 00:00:00 2001 From: Marc Lepage Date: Wed, 29 Mar 2023 17:16:41 -0400 Subject: [PATCH] Restyle --- .../all-clusters-app/esp32/main/DeviceWithDisplay.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/examples/all-clusters-app/esp32/main/DeviceWithDisplay.cpp b/examples/all-clusters-app/esp32/main/DeviceWithDisplay.cpp index 958d5f7ba755d7..cf5a5aa1cb1980 100644 --- a/examples/all-clusters-app/esp32/main/DeviceWithDisplay.cpp +++ b/examples/all-clusters-app/esp32/main/DeviceWithDisplay.cpp @@ -717,11 +717,10 @@ esp_err_t InitM5Stack(std::string qrCodeText) ESP_LOGI(TAG, "Opening Setup list"); ScreenManager::PushScreen(chip::Platform::New(chip::Platform::New())); }) - ->Item("Status", - [=]() { - ESP_LOGI(TAG, "Opening Status screen"); - ScreenManager::PushScreen(chip::Platform::New()); - }))); + ->Item("Status", [=]() { + ESP_LOGI(TAG, "Opening Status screen"); + ScreenManager::PushScreen(chip::Platform::New()); + }))); return ESP_OK; } #endif