diff --git a/src/frontend/src/pages/StorePage/index.tsx b/src/frontend/src/pages/StorePage/index.tsx index 2e03b93f8..4ee162cca 100644 --- a/src/frontend/src/pages/StorePage/index.tsx +++ b/src/frontend/src/pages/StorePage/index.tsx @@ -400,9 +400,19 @@ export default function StorePage(): JSX.Element {
- You haven't{" "} - {selectFilter === "createdbyme" ? "created" : "liked"}{" "} - anything yet. + {selectFilter != "all" ? ( + <> + You haven't{" "} + {selectFilter === "createdbyme" ? "created" : "liked"}{" "} + anything with the selected filters yet. + + ) : ( + <> + There are no{" "} + {tabActive == "Flows" ? "Flows" : "Components"} with the + selected filters. + + )}