From 7fe4f8cc56de59c71f114e2e19ecafa9596f76bb Mon Sep 17 00:00:00 2001 From: Srikanth Chekuri Date: Fri, 22 Nov 2024 16:20:25 +0530 Subject: [PATCH] chore: remove the fancy text while fetching data (#6505) --- frontend/public/locales/en/common.json | 2 +- .../src/pages/LogsExplorer/__tests__/LogsExplorer.test.tsx | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/frontend/public/locales/en/common.json b/frontend/public/locales/en/common.json index 72d9f13810..de1e3083fa 100644 --- a/frontend/public/locales/en/common.json +++ b/frontend/public/locales/en/common.json @@ -7,5 +7,5 @@ "save": "Save", "edit": "Edit", "logged_in": "Logged In", - "pending_data_placeholder": "Just a bit of patience, just a little bit’s enough ⎯ we’re getting your {{dataSource}}!" + "pending_data_placeholder": "Retrieving your {{dataSource}}!" } diff --git a/frontend/src/pages/LogsExplorer/__tests__/LogsExplorer.test.tsx b/frontend/src/pages/LogsExplorer/__tests__/LogsExplorer.test.tsx index 66bf604fa1..8a3656fe1b 100644 --- a/frontend/src/pages/LogsExplorer/__tests__/LogsExplorer.test.tsx +++ b/frontend/src/pages/LogsExplorer/__tests__/LogsExplorer.test.tsx @@ -152,11 +152,7 @@ describe('Logs Explorer Tests', () => { // check for loading state to be not present await waitFor(() => - expect( - queryByText( - `Just a bit of patience, just a little bit’s enough ⎯ we’re getting your logs!`, - ), - ).not.toBeInTheDocument(), + expect(queryByText(`Retrieving your logs!`)).not.toBeInTheDocument(), ); // check for no data state to not be present