diondiondion 093858e31a [Glitch] Remove collections client-side feature flag
Port f90f1e3b75f5bb53716bf264a5957eab9e85f1d0 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2026-04-02 18:31:43 +02:00

6 lines
171 B
TypeScript

import { isServerFeatureEnabled } from '@/flavours/glitch/utils/environment';
export function areCollectionsEnabled() {
return isServerFeatureEnabled('collections');
}