diff --git a/islands/contacts/Contacts.tsx b/islands/contacts/Contacts.tsx index 4b26c6a..e40bd68 100644 --- a/islands/contacts/Contacts.tsx +++ b/islands/contacts/Contacts.tsx @@ -271,9 +271,9 @@ export default function Contacts({ initialContacts, page, contactsCount, search
- - - +
+ + @@ -281,7 +281,7 @@ export default function Contacts({ initialContacts, page, contactsCount, search {contacts.value.map((contact) => ( - + diff --git a/islands/news/Feeds.tsx b/islands/news/Feeds.tsx index 973cfc0..860cff7 100644 --- a/islands/news/Feeds.tsx +++ b/islands/news/Feeds.tsx @@ -283,8 +283,8 @@ export default function Feeds({ initialFeeds }: FeedsProps) {
-
First Name Last Name
{contact.first_name}
- +
+ @@ -294,7 +294,7 @@ export default function Feeds({ initialFeeds }: FeedsProps) { {feeds.value.map((newsFeed) => ( - +
Title & URL Last Crawl
{newsFeed.extra.title || 'N/A'}
diff --git a/routes/_middleware.tsx b/routes/_middleware.tsx index 90191ef..7f77890 100644 --- a/routes/_middleware.tsx +++ b/routes/_middleware.tsx @@ -60,7 +60,7 @@ export const handler = [ async function handleLogging(request: Request, context: FreshContext) { const response = await context.next(); - console.info(`${new Date().toISOString()} - ${request.method} ${request.url} [${response.status}]`); + console.info(`${new Date().toISOString()} - [${response.status}] ${request.method} ${request.url}`); if (request.url.includes('/dav/')) { console.info(`Request`, request.headers); console.info((await request.clone().text()) || '');