Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gtalha07 committed Nov 4, 2024
1 parent 9fcf9d8 commit 71fcd4f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,16 @@ class _RoomMentionBlockState extends State<RoomMentionBlock> {
onTap: _handleRoomTap,
behavior: HitTestBehavior.opaque,
child: MouseRegion(
cursor: SystemMouseCursors.click,
child: MentionContentWidget(
mentionId: widget.roomId,
displayName: widget.displayName,
textStyle: widget.textStyle,
editorState: widget.editorState,
node: widget.node,
index: widget.index,
)),
cursor: SystemMouseCursors.click,
child: MentionContentWidget(
mentionId: widget.roomId,
displayName: widget.displayName,
textStyle: widget.textStyle,
editorState: widget.editorState,
node: widget.node,
index: widget.index,
),
),
)
: GestureDetector(
onTap: _handleRoomTap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,16 @@ class _UserMentionBlockState extends State<UserMentionBlock> {
onTap: _handleUserTap,
behavior: HitTestBehavior.opaque,
child: MouseRegion(
cursor: SystemMouseCursors.click,
child: MentionContentWidget(
mentionId: widget.userId,
displayName: widget.displayName,
textStyle: widget.textStyle,
editorState: widget.editorState,
node: widget.node,
index: widget.index,
)),
cursor: SystemMouseCursors.click,
child: MentionContentWidget(
mentionId: widget.userId,
displayName: widget.displayName,
textStyle: widget.textStyle,
editorState: widget.editorState,
node: widget.node,
index: widget.index,
),
),
)
: GestureDetector(
onTap: _handleUserTap,
Expand Down

0 comments on commit 71fcd4f

Please sign in to comment.