Update pages/settings/teams.tsx

Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
pull/333/head
Mihai C 2021-07-01 12:31:40 +03:00 committed by GitHub
parent 9eff620ee0
commit 715033f4e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ export default function Teams() {
{!!invites.length && <div>
<h2 className="text-lg leading-6 font-medium text-gray-900">Open Invitations</h2>
<ul className="border px-2 rounded mt-2 mb-2 divide-y divide-gray-200">
{invites.map((team) => <TeamListItem onChange={loadData} key={team.id} team={team}></TeamListItem>)}
{invites.map((team) => (
</ul>
</div>}
</div>