We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d4292b commit e83a1a3Copy full SHA for e83a1a3
apps/frontend/app/routes/_dashboard.collections.list.tsx
@@ -334,9 +334,9 @@ const DisplayCollection = (props: {
334
additionalDisplay.push(`By ${props.collection.creator.name}`);
335
if (props.collection.count > 0)
336
additionalDisplay.push(`${props.collection.count} items`);
337
- if (props.collection.collaborators.length > 0)
+ if (props.collection.collaborators.length > 1)
338
additionalDisplay.push(
339
- `${props.collection.collaborators.length} collaborators`,
+ `${props.collection.collaborators.length - 1} collaborators`,
340
);
341
342
const FallBackImage = () => (
0 commit comments