👽 Remove outdated field in sticker

This commit is contained in:
2025-10-26 03:00:01 +08:00
parent 0a161ad255
commit 92c0260ecd
5 changed files with 8 additions and 8 deletions

View File

@@ -613,7 +613,7 @@ class ChatInput extends HookConsumerWidget {
width: 28,
height: 28,
child: CloudImageWidget(
fileId: sticker.imageId,
fileId: sticker.image.id,
),
),
);

View File

@@ -202,7 +202,7 @@ class ComposeFormFields extends HookConsumerWidget {
child: SizedBox(
width: 28,
height: 28,
child: CloudImageWidget(fileId: sticker.imageId),
child: CloudImageWidget(fileId: sticker.image.id),
),
);
break;

View File

@@ -263,7 +263,7 @@ class _StickersGrid extends StatelessWidget {
child: AspectRatio(
aspectRatio: 1,
child: CloudImageWidget(
fileId: sticker.imageId,
fileId: sticker.image.id,
fit: BoxFit.contain,
),
),