final testing and cleanup

This commit is contained in:
Lucas Jensen
2025-01-18 19:31:08 -08:00
parent 0e150e72cc
commit 85e77c5cc7
2 changed files with 4 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ function Group(props: GroupProps) {
<Image
src={programUrl}
className="img-fluid"
alt="A PDF of the program fo the current livestream"
alt="A of the current livestream"
/>
</a>
</Container>

View File

@@ -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