From cc4ba464030888ccda214b6b71389a936e04f6cc Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Mon, 1 Jul 2019 00:00:06 -0400 Subject: [PATCH] limit tags to 1 for recommended claim previews --- src/ui/component/claimTags/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/component/claimTags/view.jsx b/src/ui/component/claimTags/view.jsx index 04470cf7e..8a64e8750 100644 --- a/src/ui/component/claimTags/view.jsx +++ b/src/ui/component/claimTags/view.jsx @@ -3,7 +3,7 @@ import * as React from 'react'; import classnames from 'classnames'; import Button from 'component/button'; -const SLIM_TAGS = 2; +const SLIM_TAGS = 1; const NORMAL_TAGS = 4; const LARGE_TAGS = 10;