From bfd4c6936869618a96b7f5c69c9e4a5c35aad94e Mon Sep 17 00:00:00 2001 From: sonnguyenkieio Date: Mon, 6 Sep 2021 09:55:02 +0700 Subject: [PATCH] :sparkles: feat: Breadcrumb Common --- src/components/common/BreadcrumbCommon/BreadcrumbCommon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/common/BreadcrumbCommon/BreadcrumbCommon.tsx b/src/components/common/BreadcrumbCommon/BreadcrumbCommon.tsx index 2dca6b714..615a26893 100644 --- a/src/components/common/BreadcrumbCommon/BreadcrumbCommon.tsx +++ b/src/components/common/BreadcrumbCommon/BreadcrumbCommon.tsx @@ -9,7 +9,7 @@ interface BreadcrumbCommonProps { showHomePage?: boolean; } -const BreadcrumbCommon = ({ crumbs, showHomePage=false } : BreadcrumbCommonProps) => { +const BreadcrumbCommon = ({ crumbs, showHomePage=true } : BreadcrumbCommonProps) => { if (showHomePage) { crumbs.unshift({link: "/", name: "Home"}); }