import { cache } from 'react';

import { getCreatorData } from './creators';

// Cache creator data fetches per request to avoid duplicate backend calls
export const getCreatorDataCached = cache(getCreatorData);
