From 769f36f8d5a2871a73f54aa1bbb441ff85963529 Mon Sep 17 00:00:00 2001 From: Mihai C <34626017+mihaic195@users.noreply.github.com> Date: Thu, 1 Jul 2021 12:30:10 +0300 Subject: [PATCH] Update pages/settings/teams.tsx Co-authored-by: Bailey Pumfleet --- pages/settings/teams.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/settings/teams.tsx b/pages/settings/teams.tsx index ca6b21c911..36b57984ff 100644 --- a/pages/settings/teams.tsx +++ b/pages/settings/teams.tsx @@ -24,7 +24,7 @@ export default function Teams() { } const loadData = () => { - fetch('/api/user/membership') + fetch("/api/user/membership") .then(handleErrors) .then((data) => { setTeams(data.membership.filter((m) => m.role !== "INVITEE"));