From 7684d23425460ea1340875eb26b79b610b2acf77 Mon Sep 17 00:00:00 2001 From: James Elson Date: Fri, 8 Mar 2024 15:01:21 -0800 Subject: [PATCH 1/4] Limits changed to Elevated Access, margin added + copy changed for clarity --- .../components/api-product-item/api-product-item.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/nextapp/components/api-product-item/api-product-item.tsx b/src/nextapp/components/api-product-item/api-product-item.tsx index e2c16f919..c16c81f58 100644 --- a/src/nextapp/components/api-product-item/api-product-item.tsx +++ b/src/nextapp/components/api-product-item/api-product-item.tsx @@ -79,16 +79,16 @@ const ApiProductItem: React.FC = ({ {isTiered && ( - + - Limits + Elevated Access - Public access has a rate limit enforced. + Public access does not require an API key. For elevated access, please request access. From f1f30a16ddcd1ad0b1add474093c57453b7cf88e Mon Sep 17 00:00:00 2001 From: James Elson Date: Wed, 13 Mar 2024 15:59:28 -0700 Subject: [PATCH 2/4] Updates from code review. Plus some margin tweaking --- .../api-product-item/api-product-item.tsx | 28 +++++++++++-------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/src/nextapp/components/api-product-item/api-product-item.tsx b/src/nextapp/components/api-product-item/api-product-item.tsx index c16c81f58..e389ad6cf 100644 --- a/src/nextapp/components/api-product-item/api-product-item.tsx +++ b/src/nextapp/components/api-product-item/api-product-item.tsx @@ -50,13 +50,15 @@ const ApiProductItem: React.FC = ({ - + {data.name} @@ -68,31 +70,35 @@ const ApiProductItem: React.FC = ({ )} - {!isTiered && isGatewayProtected && ( + {!isTiered && isGatewayProtected ? ( + ) : ( + )} {isTiered && ( - + - + Elevated Access - - Public access does not require an API key. - - - For elevated access, please request access. - Date: Thu, 14 Mar 2024 14:49:44 -0700 Subject: [PATCH 3/4] More product page ui tweaks --- .../components/api-product-item/api-product-item.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/nextapp/components/api-product-item/api-product-item.tsx b/src/nextapp/components/api-product-item/api-product-item.tsx index e389ad6cf..3e1d6e640 100644 --- a/src/nextapp/components/api-product-item/api-product-item.tsx +++ b/src/nextapp/components/api-product-item/api-product-item.tsx @@ -81,16 +81,16 @@ const ApiProductItem: React.FC = ({ )} {isTiered && ( - + From 29aeb5ee0e6bb029aa39079ce484c662ed68d41e Mon Sep 17 00:00:00 2001 From: James Elson Date: Mon, 18 Mar 2024 13:08:51 -0700 Subject: [PATCH 4/4] Make button not disabled --- src/nextapp/components/api-product-item/api-product-item.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nextapp/components/api-product-item/api-product-item.tsx b/src/nextapp/components/api-product-item/api-product-item.tsx index 3e1d6e640..e751ee529 100644 --- a/src/nextapp/components/api-product-item/api-product-item.tsx +++ b/src/nextapp/components/api-product-item/api-product-item.tsx @@ -79,7 +79,7 @@ const ApiProductItem: React.FC = ({ /> ) : (