Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
79d124e188
commit
b422766132
@@ -202,7 +202,7 @@ function LinksTab() {
|
|||||||
<div className="space-y-4 mt-4">
|
<div className="space-y-4 mt-4">
|
||||||
<div className="bg-card border rounded-lg divide-y">
|
<div className="bg-card border rounded-lg divide-y">
|
||||||
{(links ?? []).map((l) => {
|
{(links ?? []).map((l) => {
|
||||||
const p = l.profiles as { full_name?: string; email?: string } | null;
|
const p = l.profile as { full_name?: string; email?: string } | undefined;
|
||||||
const s = l.students as { first_name: string; last_name: string } | null;
|
const s = l.students as { first_name: string; last_name: string } | null;
|
||||||
return (
|
return (
|
||||||
<div key={l.id} className="p-3 flex justify-between items-center text-sm">
|
<div key={l.id} className="p-3 flex justify-between items-center text-sm">
|
||||||
|
|||||||
Reference in New Issue
Block a user