I been using multiple hooks to manage my data in React and I had an issue in which that multiple hooks uses the same variable name.
const { data } = useCompetitors();
const { data } = useCompetitorGroups();
This results in error! What are the best practices I can do to resolve this? Using array? Or is there a way to check the naming here.
