1.115.0 fast follows (#9743)

* Fix caching, fix attributes setting

* Use useCallOnce hook

* Update dismissal handling

* Update copy
This commit is contained in:
Eric Bailey
2026-01-23 16:28:40 -06:00
committed by GitHub
parent 967b3b49d9
commit 3523e7ce58
6 changed files with 57 additions and 38 deletions
+4 -1
View File
@@ -4,5 +4,8 @@ import {useAnalytics} from '#/analytics'
export function useIsBskyTeam() {
const ax = useAnalytics()
return useMemo(() => ax.features.enabled(ax.features.IsBskyTeam), [ax])
return useMemo(
() => ax.features.enabled(ax.features.IsBskyTeam),
[ax.features],
)
}