diff --git a/client/src/Group/Group.tsx b/client/src/Group/Group.tsx index 0476492..14994ec 100644 --- a/client/src/Group/Group.tsx +++ b/client/src/Group/Group.tsx @@ -102,7 +102,7 @@ function Group(props: GroupProps) { A PDF of the program fo the current livestream diff --git a/server/app/models/group.py b/server/app/models/group.py index ef770d4..862d9ce 100644 --- a/server/app/models/group.py +++ b/server/app/models/group.py @@ -6,5 +6,7 @@ class Group(BaseModel): name: str bio: str livestream_id: str = "" - livestream_program_cld_id: Optional[str] = None # not a FK! references a cloudinary ID + livestream_program_cld_id: Optional[str] = ( + None # not a FK! references a cloudinary ID + ) id: Optional[int] = None