diff --git a/src/hooks/useStudio.ts b/src/hooks/useStudio.ts index df8f3a631..9185d30da 100644 --- a/src/hooks/useStudio.ts +++ b/src/hooks/useStudio.ts @@ -12,8 +12,6 @@ export function useStudioEnabled() { const [studioEnabled, setStudioEnabled] = useState(false); const checkStudioEnabled = useCallback(async () => { - setStudioEnabled(true); - return true; if (!contracts || !account) return; const studioEnabled = await contracts.queryRegistry.creatorWhitelist(account); setStudioEnabled(studioEnabled);