diff --git a/src/pages/Home/index.tsx b/src/pages/Home/index.tsx
index db34ebd..3fe15de 100644
--- a/src/pages/Home/index.tsx
+++ b/src/pages/Home/index.tsx
@@ -1,18 +1,18 @@
import { LocksCard } from '@/components/LocksCard'
-import { useDelegatees } from '@/contexts/DelegateesContext'
-import { DelegateeCard } from '@/components/DelegateeCard'
+import { useDelegates } from '@/contexts/DelegatesContext'
+import { DelegateCard } from '@/components/DelegateCard'
export const Home = () => {
- const { delegatees } = useDelegatees()
+ const { delegates } = useDelegates()
return (
- Delegatees
+ Delegates
- {delegatees?.map((d) => )}
+ {delegates?.map((d) => )}
)