From bbc8e7cc406d9a1972590ac796b27b618bf5a182 Mon Sep 17 00:00:00 2001 From: shahin-hq <132887516+shahin-hq@users.noreply.github.com> Date: Tue, 24 Oct 2023 12:27:43 +0400 Subject: [PATCH] fix: collections page header (#269) --- .../CollectionsHeading/CollectionsHeading.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/resources/js/Pages/Collections/Components/CollectionsHeading/CollectionsHeading.tsx b/resources/js/Pages/Collections/Components/CollectionsHeading/CollectionsHeading.tsx index c29c3a0fb..62e7a0961 100644 --- a/resources/js/Pages/Collections/Components/CollectionsHeading/CollectionsHeading.tsx +++ b/resources/js/Pages/Collections/Components/CollectionsHeading/CollectionsHeading.tsx @@ -13,12 +13,14 @@ export const CollectionsHeading = ({ const { t } = useTranslation(); return ( - +
-

{t("common.my_collection")}

+ + {t("common.my_collection")} +
- +
); };