From f83117424d5d7fd69cee37d6a2d2919e3371c007 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sun, 2 Nov 2025 23:44:11 +0800 Subject: [PATCH] :bug: Fix tag subscribe used wrong icon --- lib/screens/posts/post_category_detail.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/screens/posts/post_category_detail.dart b/lib/screens/posts/post_category_detail.dart index e2befaa3..4017ef9d 100644 --- a/lib/screens/posts/post_category_detail.dart +++ b/lib/screens/posts/post_category_detail.dart @@ -201,7 +201,7 @@ class PostCategoryDetailScreen extends HookConsumerWidget { ); }, icon: const Icon( - Symbols.add_circle, + Symbols.remove_circle, ), label: Text('unsubscribe'.tr()), ) @@ -214,7 +214,7 @@ class PostCategoryDetailScreen extends HookConsumerWidget { ); }, icon: const Icon( - Symbols.remove_circle, + Symbols.add_circle, ), label: Text('subscribe'.tr()), ),