diff --git a/src/app/(auth-state)/admin/photos/page.tsx b/src/app/(auth-state)/admin/photos/page.tsx index 937bff95..d0e12ede 100644 --- a/src/app/(auth-state)/admin/photos/page.tsx +++ b/src/app/(auth-state)/admin/photos/page.tsx @@ -58,26 +58,31 @@ export default async function AdminPage() { )} photo={photo} /> - - {photo.title || - - Untitled - } - {photo.priorityOrder !== null && - - {photo.priorityOrder} - } - -
- {photo.takenAtNaive} +
+ + {photo.title || + + Untitled + } + {photo.priorityOrder !== null && + + {photo.priorityOrder} + } + +
+ {photo.takenAtNaive} +
{children} @@ -127,17 +132,23 @@ function EditButton ({ href: string, label?: string, }) { - return - - {label} - ; + return ( + + + + {label} + + + ); } function DeleteButton () { return ×} > Delete @@ -174,7 +185,6 @@ function BlobUrls ({ > {pathForBlobUrl(url)} -
{pending ? : icon} } - {children} + + {children} + ); };