diff --git a/app/src/components/requestLogs/TableRow.tsx b/app/src/components/requestLogs/TableRow.tsx index 6fb1bbb..85db839 100644 --- a/app/src/components/requestLogs/TableRow.tsx +++ b/app/src/components/requestLogs/TableRow.tsx @@ -41,8 +41,8 @@ export const TableHeader = ({ showCheckbox }: { showCheckbox?: boolean }) => { {showCheckbox && ( - - + + { @@ -56,7 +56,7 @@ export const TableHeader = ({ showCheckbox }: { showCheckbox?: boolean }) => { )} - Time + Sent At Model Duration Input tokens @@ -79,7 +79,7 @@ export const TableRow = ({ showCheckbox?: boolean; }) => { const isError = loggedCall.modelResponse?.statusCode !== 200; - const timeAgo = dayjs(loggedCall.requestedAt).fromNow(); + const requestedAt = dayjs(loggedCall.requestedAt).format("MMMM D h:mm A"); const fullTime = dayjs(loggedCall.requestedAt).toString(); const durationCell = ( @@ -104,6 +104,7 @@ export const TableRow = ({ sx={{ "> td": { borderBottom: "none" }, }} + fontSize="sm" > {showCheckbox && ( @@ -113,7 +114,7 @@ export const TableRow = ({ - {timeAgo} + {requestedAt}