Skip to content

Commit b4375f6

Browse files
Merge pull request #2655 from STG-Tanner/dev
Fix Dashboard domain name rows
2 parents 5b45d49 + 7bafde8 commit b4375f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/home/Home.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ const TenantDashboard = () => {
289289
{organization.verifiedDomains?.slice(0, 3).map((item, idx) => (
290290
<li key={idx}>{item.name}</li>
291291
))}
292-
{organization.verifiedDomains?.length > 5 && (
292+
{organization.verifiedDomains?.length > 3 && (
293293
<>
294294
<CCollapse visible={domainVisible}>
295295
{organization.verifiedDomains?.slice(3).map((item, idx) => (

0 commit comments

Comments
 (0)