Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gramovi4a committed May 27, 2024
1 parent 831bc5a commit f8de3ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/contacts/components/ContactsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const ContactsList: React.FC<ContactsListProps> = ({ change }) => {
setLoading(true);
setError(null);
try {
const response = await getAllContactsByUserEmail(storage.getUser().userEmail);
const response = await getAllContactsByUserEmail(storage.getUser().email);
await setAllContacts(response);
console.log("Response", response);
} catch (error) {
Expand Down

0 comments on commit f8de3ac

Please sign in to comment.