panel-linter-fix
Some checks failed
Deploy on push / deploy (push) Failing after 2m15s

This commit is contained in:
2025-08-18 20:23:25 +03:00
parent 1b48675b92
commit e13267a868
14 changed files with 188 additions and 145 deletions

View File

@@ -29,9 +29,8 @@ const CommunitySelector = () => {
const allCommunities = communities()
console.log('[CommunitySelector] Состояние:', {
selectedId: current,
selectedName: current !== null
? allCommunities.find((c) => c.id === current)?.name
: 'Все сообщества',
selectedName:
current !== null ? allCommunities.find((c) => c.id === current)?.name : 'Все сообщества',
totalCommunities: allCommunities.length
})
})