Skip to content

Commit e0c60eb

Browse files
committed
앱에서 본인인증 만료되면 버튼 나오게 수정 (#2865)
1 parent de83bb4 commit e0c60eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/mobile/lib/screens/identification.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class IdentificationScreen extends StatelessWidget {
4848
'- 본인인증을 통해 연령제한 콘텐츠를 이용할 수 있어요.\n',
4949
style: TextStyle(fontSize: 12, color: BrandColors.gray_500),
5050
),
51-
if (identified) ...[
51+
if (identified && Jiffy.parse(data.me!.personalIdentity!.expiresAt!.value).isAfter(Jiffy.now())) ...[
5252
const Gap(24),
5353
Container(
5454
width: double.infinity,

0 commit comments

Comments
 (0)