diff --git a/frontend/src/PersonList.tsx b/frontend/src/PersonList.tsx index e955ebe..4c0a6c7 100644 --- a/frontend/src/PersonList.tsx +++ b/frontend/src/PersonList.tsx @@ -29,7 +29,7 @@ export const PersonList = ({ people }: Props) => {
{people.map((person, index) => { - if (person.name == current_user) { + if (person.name.toLowerCase() === current_user.toLowerCase()) { return (