Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Disabled search term being shown temporarily #381

Merged
merged 1 commit into from
Mar 3, 2023
Merged
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
7 changes: 4 additions & 3 deletions src/components/orders/OrderNotFound/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,11 @@ export const OrderAddressNotFound: React.FC = (): JSX.Element => {
<Content>
{searchString ? (
<>
<p>Sorry, no matches found for:</p>
<p>
<p>Sorry, no matches found.</p>
{/* Disabled temporarily, until we can implement a way to validate search strings. */}
{/*<p>
<strong>&quot;{searchString}&quot;</strong>
</p>
</p>*/}
Copy link
Contributor

Choose a reason for hiding this comment

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

Kill the dead code :)

</>
) : (
<p>The search cannot be empty</p>
Expand Down