File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ class _LightboxPageLayoutState extends State<_LightboxPageLayout> {
178
178
child: RichText (
179
179
text: TextSpan (children: [
180
180
TextSpan (
181
- text: '${widget .message .senderFullName }\n ' ,
181
+ text: '${widget .message .senderFullName }\n ' , // TODO(#716): use `store.senderDisplayName`
182
182
183
183
// Restate default
184
184
style: themeData.textTheme.titleLarge! .copyWith (color: appBarForegroundColor)),
Original file line number Diff line number Diff line change @@ -1352,7 +1352,7 @@ class MessageWithPossibleSender extends StatelessWidget {
1352
1352
userId: message.senderId),
1353
1353
const SizedBox (width: 8 ),
1354
1354
Flexible (
1355
- child: Text (message.senderFullName, // TODO get from user data
1355
+ child: Text (message.senderFullName, // TODO(#716): use `store.senderDisplayName`
1356
1356
style: TextStyle (
1357
1357
fontSize: 18 ,
1358
1358
height: (22 / 18 ),
You can’t perform that action at this time.
0 commit comments