Skip to content

Conversation

@Husnain-Sajjad
Copy link
Contributor

Description

This PR fixes a syntax error in the onTap example in doc/documentation.md. The documentation previously included an invalid trailing comma after the opening brace:

onTap: (chat) {,
// Handle chat tile tap
},

This caused the example to be invalid Dart code. The corrected version removes the stray comma:

onTap: (chat) {
// Handle chat tile tap
},

This update ensures the documentation provides a valid, copy-ready code snippet for developers.

Breaking Change?

No, this PR is not a breaking change.

Related Issues

None

Copy link
Contributor

@Sahil-Simform Sahil-Simform left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for discovering this :)

@Sahil-Simform Sahil-Simform merged commit 0d4eb7f into SimformSolutionsPvtLtd:main Dec 17, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants