Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
// Converts seconds takes to update to human readable format
const readableCheckbackTime = formatDistance(
add(new Date(), { seconds: secondsCheckbackTime() }),
new Date()
new Date(),

Check failure on line 43 in frontend/pages/queries/details/components/NoResults/NoResults.tsx

View workflow job for this annotation

GitHub Actions / lint-js (ubuntu-latest)

Delete `,`
);

// Collecting results state only shows if caching is enabled
if (collectingResults && !disabledCaching) {
const collectingResultsInfo = () => (
<>
Fleet is collecting report results. <br />
Check back in about {readableCheckbackTime}.
Check back in {readableCheckbackTime}.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Love it!

</>
);

Expand Down
Loading