{navigation.map((item) => (
-
{item.name}
-
+ {item.pulse ? (
+
+ ) : null}
+
))}
{!user && (
diff --git a/packages/supabase/migrations/16_teams.sql b/packages/supabase/migrations/16_teams.sql
index 6fa815d..8def046 100644
--- a/packages/supabase/migrations/16_teams.sql
+++ b/packages/supabase/migrations/16_teams.sql
@@ -110,4 +110,6 @@ create table page_audit_logs (
);
alter table page_audit_logs enable row level security;
-create policy "Can insert page audit logs." on page_audit_logs for insert with check (actor_id = auth.uid());
\ No newline at end of file
+create policy "Can insert page audit logs." on page_audit_logs for insert with check (actor_id = auth.uid());
+
+alter publication supabase_realtime add table team_invitations;
\ No newline at end of file