Skip to content

Commit

Permalink
Fix Checkout.tsx and Search.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Dec 14, 2024
1 parent fdbecc8 commit 4a11171
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/Checkout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ const Checkout = () => {
)}
</Layout>

{loadingPage && <Progress />}
{loadingPage && !noMatch && <Progress />}
</>
)
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ const Search = () => {
{noMatch && <NoMatch hideHeader />}
</Layout>

{loadingPage && <Progress />}
{loadingPage && !noMatch && <Progress />}
</>
)
}
Expand Down

0 comments on commit 4a11171

Please sign in to comment.