Custom Profile Pictures (#1339)

This commit is contained in:
Luke Vella 2024-09-09 16:51:42 +01:00 committed by GitHub
parent 1276bc27b3
commit e723d9a933
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 383 additions and 376 deletions

View file

@ -0,0 +1,5 @@
import { useFeatureFlagEnabled } from "posthog-js/react";
export function useAvatarsEnabled() {
return useFeatureFlagEnabled("avatars");
}