Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/dashboard/lib/trpc/routers/key/delete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const deleteKeys = t.procedure
);
})
.catch((err) => {
console.error(err)
console.error(err);
throw new TRPCError({
code: "INTERNAL_SERVER_ERROR",
message: "We are unable to delete the key. Please try again or contact support@unkey.dev",
Expand Down
8 changes: 4 additions & 4 deletions apps/www/app/blog/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,15 +175,15 @@ const BlogArticleWrapper = async ({ params }: { params: { slug: string } }) => {
/>
<AvatarFallback />
</Avatar>
<p className="flex items-center justify-center p-0 pt-2 m-0 ml-2 text-white text-nowrap">
<p className="flex items-center justify-center p-0 pt-1 m-0 ml-2 text-white text-nowrap">
{author.name}
</p>
</div>
</div>
<div className="flex flex-col h-full">
<div className="flex flex-col h-full w-full justify-end">
{" "}
<p className="text-xs text-nowrap text-white/50">Published on</p>
<div className="flex mt-2 sm:mt-6">
<p className="text-nowrap text-white/50">Published on</p>
<div className="flex mt-2 sm:mt-6 md:mt-5">
<time
dateTime={post.date}
className="inline-flex items-center text-white text-nowrap"
Expand Down