fix(StorePage): update text to be more generic and inclusive

The text in the StorePage component was updated to be more generic and inclusive. Instead of saying "You haven't created/liked any flows yet", it now says "You haven't created/liked anything yet". This change was made to make the text more inclusive and applicable to different types of content, not just flows.
This commit is contained in:
anovazzi1 2023-11-17 21:11:49 -03:00
commit e8ab9c73cc

View file

@ -361,8 +361,8 @@ export default function StorePage(): JSX.Element {
<div className="flex w-full flex-col gap-4">
<div className="grid w-full gap-4">
You haven't{" "}
{selectFilter === "createdbyme" ? "created" : "liked"} any
flows yet.
{selectFilter === "createdbyme" ? "created" : "liked"}{" "}
anything yet.
</div>
</div>
</div>