From 49bb4efbd4dc1c26f6a6e6b0d80c4f2cf9bfe62a Mon Sep 17 00:00:00 2001 From: ZiaCodes Date: Fri, 11 Oct 2024 19:06:16 +0500 Subject: [PATCH 1/5] fix: weird spacing in changelog --- apps/www/components/blog/blog-list.tsx | 4 ++-- apps/www/components/changelog/changelog-grid-item.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/www/components/blog/blog-list.tsx b/apps/www/components/blog/blog-list.tsx index 8fe111fa3f..a7646526de 100644 --- a/apps/www/components/blog/blog-list.tsx +++ b/apps/www/components/blog/blog-list.tsx @@ -9,13 +9,13 @@ export type BlogListProps = { export function BlogList({ children, className }: BlogListProps) { // console.log("BlogList children", children); return ( - + ); } export function BlogListNumbered({ children, className }: BlogListProps) { // console.log("BlogList children", children); return ( -
    +
      {children}
    ); diff --git a/apps/www/components/changelog/changelog-grid-item.tsx b/apps/www/components/changelog/changelog-grid-item.tsx index 2cf3166fc3..f36c7531df 100644 --- a/apps/www/components/changelog/changelog-grid-item.tsx +++ b/apps/www/components/changelog/changelog-grid-item.tsx @@ -55,7 +55,7 @@ export async function ChangelogGridItem({ className, changelog }: Props) { )}
    From 7ba5ac6d3851f4638569893896f804dd5962f940 Mon Sep 17 00:00:00 2001 From: ZiaCodes Date: Fri, 11 Oct 2024 19:20:40 +0500 Subject: [PATCH 2/5] feat: formatted --- apps/www/components/blog/blog-list.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/www/components/blog/blog-list.tsx b/apps/www/components/blog/blog-list.tsx index a7646526de..f23d94c87e 100644 --- a/apps/www/components/blog/blog-list.tsx +++ b/apps/www/components/blog/blog-list.tsx @@ -8,16 +8,12 @@ export type BlogListProps = { export function BlogList({ children, className }: BlogListProps) { // console.log("BlogList children", children); - return ( -
      {children}
    - ); + return
      {children}
    ; } export function BlogListNumbered({ children, className }: BlogListProps) { // console.log("BlogList children", children); return ( -
      - {children} -
    +
      {children}
    ); } export function BlogListItem({ children, className }: BlogListProps) { From 7f0a7172dc68407d1c525d3528a9d50e39769ef3 Mon Sep 17 00:00:00 2001 From: ZiaCodes Date: Wed, 16 Oct 2024 09:53:41 +0500 Subject: [PATCH 3/5] chore: added my links in ossgg files --- oss.gg/3_follow_the_unkey_x_account.md | 3 +++ oss.gg/4_starry_eyed_supporter.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/oss.gg/3_follow_the_unkey_x_account.md b/oss.gg/3_follow_the_unkey_x_account.md index 2ded321ecf..4e3936736f 100644 --- a/oss.gg/3_follow_the_unkey_x_account.md +++ b/oss.gg/3_follow_the_unkey_x_account.md @@ -30,4 +30,7 @@ Your turn 👇 » 11-October-2024 by [Emily M. Ahtunan](@shemmariea) » Link to Account: https://x.com/shemmariea + +» 16-October-2024 by [Zia Ur Rehman](@zia_webdev) +» Link to Account: https://x.com/zia_webdev --- diff --git a/oss.gg/4_starry_eyed_supporter.md b/oss.gg/4_starry_eyed_supporter.md index 5734882094..87d96d9ed8 100644 --- a/oss.gg/4_starry_eyed_supporter.md +++ b/oss.gg/4_starry_eyed_supporter.md @@ -22,4 +22,7 @@ Your turn 👇 » 01-October-2024 by YOUR NAME +» 16-October-2024 by [Zia Ur Rehman](@zia_webdev) + + --- From df531aae3fb2320674720cb16a1523ea685acbf9 Mon Sep 17 00:00:00 2001 From: ZiaCodes Date: Wed, 16 Oct 2024 09:54:05 +0500 Subject: [PATCH 4/5] chore: added my links in ossgg files --- oss.gg/4_starry_eyed_supporter.md | 1 + 1 file changed, 1 insertion(+) diff --git a/oss.gg/4_starry_eyed_supporter.md b/oss.gg/4_starry_eyed_supporter.md index 87d96d9ed8..0097ebc4c0 100644 --- a/oss.gg/4_starry_eyed_supporter.md +++ b/oss.gg/4_starry_eyed_supporter.md @@ -23,6 +23,7 @@ Your turn 👇 » 01-October-2024 by YOUR NAME » 16-October-2024 by [Zia Ur Rehman](@zia_webdev) +» Link to Issue: https://github.com/unkeyed/unkey/issues/2455 --- From 2f42bd12600d3c8828014707241a39ec13d3b314 Mon Sep 17 00:00:00 2001 From: ZiaCodes Date: Wed, 16 Oct 2024 09:59:27 +0500 Subject: [PATCH 5/5] chore: removed extra changes --- apps/www/components/blog/blog-list.tsx | 8 ++++++-- apps/www/components/changelog/changelog-grid-item.tsx | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/www/components/blog/blog-list.tsx b/apps/www/components/blog/blog-list.tsx index f23d94c87e..8fe111fa3f 100644 --- a/apps/www/components/blog/blog-list.tsx +++ b/apps/www/components/blog/blog-list.tsx @@ -8,12 +8,16 @@ export type BlogListProps = { export function BlogList({ children, className }: BlogListProps) { // console.log("BlogList children", children); - return
      {children}
    ; + return ( +
      {children}
    + ); } export function BlogListNumbered({ children, className }: BlogListProps) { // console.log("BlogList children", children); return ( -
      {children}
    +
      + {children} +
    ); } export function BlogListItem({ children, className }: BlogListProps) { diff --git a/apps/www/components/changelog/changelog-grid-item.tsx b/apps/www/components/changelog/changelog-grid-item.tsx index f36c7531df..2cf3166fc3 100644 --- a/apps/www/components/changelog/changelog-grid-item.tsx +++ b/apps/www/components/changelog/changelog-grid-item.tsx @@ -55,7 +55,7 @@ export async function ChangelogGridItem({ className, changelog }: Props) { )}