diff --git a/apps/mobile-mzima-client/src/app/shared/components/collection-item/collection-item.component.ts b/apps/mobile-mzima-client/src/app/shared/components/collection-item/collection-item.component.ts index 5f04975adcb..b257c9244f0 100644 --- a/apps/mobile-mzima-client/src/app/shared/components/collection-item/collection-item.component.ts +++ b/apps/mobile-mzima-client/src/app/shared/components/collection-item/collection-item.component.ts @@ -19,9 +19,7 @@ export class CollectionItemComponent { if (this.userRole === 'admin') { return true; } - return ( - this.canManageCollections && String(this.collection.user_id) === String(this.currentUserId) - ); + return this.canManageCollections; } public editClickHandle(event: Event): void {