[mob][photos] Don't show emptyCTA for faces in people full page

This commit is contained in:
laurenspriem 2024-05-08 15:32:13 +05:30
parent 63f22680f4
commit 8c373857a2

View file

@ -101,7 +101,7 @@ extension SectionTypeExtensions on SectionType {
bool get isCTAVisible {
switch (this) {
case SectionType.face:
return true;
return false;
case SectionType.content:
return false;
case SectionType.moment:
@ -124,7 +124,7 @@ extension SectionTypeExtensions on SectionType {
bool get isEmptyCTAVisible {
switch (this) {
case SectionType.face:
return true;
return false;
case SectionType.content:
return false;
case SectionType.moment: