chore(core): remove client comment feature flag (#13034)

#### PR Dependency Tree


* **PR #13034** 👈

This tree was auto-generated by
[Charcoal](https://github.com/danerwilliams/charcoal)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Refactor**
  * Removed the comment feature flag from the application.
* The ability to enable comments now depends solely on server
configuration, not on a feature flag.
* **Chores**
* Cleaned up related feature flag definitions and internal logic for
comment enablement.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

Co-authored-by: fengmk2 <fengmk2@gmail.com>
This commit is contained in:
L-Sun
2025-07-04 19:26:30 +08:00
committed by GitHub
parent 1452f77c85
commit ee8c7616bc
4 changed files with 4 additions and 18 deletions
@@ -118,10 +118,8 @@ const DetailPageImpl = memo(function DetailPageImpl() {
const serverService = useService(ServerService);
const serverConfig = useLiveData(serverService.server.config$);
const enableComment =
useLiveData(featureFlagService.flags.enable_comment.$) &&
// comment may not be supported by the server
serverConfig.features.includes(ServerFeature.Comment);
// comment may not be supported by the server
const enableComment = serverConfig.features.includes(ServerFeature.Comment);
useEffect(() => {
if (isActiveView) {