Skip to content

Commit

Permalink
chore: remove the fancy text while fetching data (#6505)
Browse files Browse the repository at this point in the history
  • Loading branch information
srikanthccv authored Nov 22, 2024
1 parent ed6abe5 commit 7fe4f8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -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}}!"
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7fe4f8c

Please sign in to comment.