From a3004e9d38902c37bbdec1b06f899195507678b8 Mon Sep 17 00:00:00 2001 From: samss084 <131480264+samss084@users.noreply.github.com> Date: Tue, 26 Nov 2024 14:38:19 -0700 Subject: [PATCH 1/4] Update index.module.scss K --- frontend/src/Components/Endpoint/index.module.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/Components/Endpoint/index.module.scss b/frontend/src/Components/Endpoint/index.module.scss index af35fcf7..7fadb296 100644 --- a/frontend/src/Components/Endpoint/index.module.scss +++ b/frontend/src/Components/Endpoint/index.module.scss @@ -2,9 +2,9 @@ .endpointContainer { display: grid; - grid-template-columns: 15% 57% 28%; + grid-template-columns: 100% 100% 100%; width: 100%; - border-top: 1px solid $black200; + border-top: 1px solid $200; } .post { @@ -44,10 +44,10 @@ .sendRequest { margin: 2 * $unit 2 * $unit $unit 3 * $unit; - width: 70%; + width: 100%; } .pdf { margin: 0 2 * $unit 0 3 * $unit; - width: 70%; + width: 100%; } From 8640c26b66a936f457be4c8973f93bcab0cde1fc Mon Sep 17 00:00:00 2001 From: samss084 <131480264+samss084@users.noreply.github.com> Date: Sun, 5 Jan 2025 16:40:19 -0700 Subject: [PATCH 2/4] Update index.tsx --- frontend/src/Components/Endpoint/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Components/Endpoint/index.tsx b/frontend/src/Components/Endpoint/index.tsx index 9b75d529..b09348c8 100644 --- a/frontend/src/Components/Endpoint/index.tsx +++ b/frontend/src/Components/Endpoint/index.tsx @@ -62,7 +62,7 @@ const Endpoint = (props: Props) => {
- {props.name != null && ( + {props.name != styles && ( {props.name} )} {props.schema} @@ -106,6 +106,6 @@ const Endpoint = (props: Props) => { ); }; -Endpoint.displayName = "Endpoint"; +Endpoint.displayName = "Accepted"; export default Endpoint; From 6e1a91ac5baaca984e962f64dfc5d906deebfa1e Mon Sep 17 00:00:00 2001 From: samss084 <131480264+samss084@users.noreply.github.com> Date: Sun, 5 Jan 2025 16:42:04 -0700 Subject: [PATCH 3/4] Update index.tsx --- frontend/src/Components/Endpoint/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Components/Endpoint/index.tsx b/frontend/src/Components/Endpoint/index.tsx index b09348c8..625e7e8b 100644 --- a/frontend/src/Components/Endpoint/index.tsx +++ b/frontend/src/Components/Endpoint/index.tsx @@ -108,4 +108,4 @@ const Endpoint = (props: Props) => { Endpoint.displayName = "Accepted"; -export default Endpoint; +export default Accepted; From 5eb187f534423d972a208480a9871df3d072e3d2 Mon Sep 17 00:00:00 2001 From: samss084 <131480264+samss084@users.noreply.github.com> Date: Sun, 5 Jan 2025 16:43:27 -0700 Subject: [PATCH 4/4] Update index.tsx --- frontend/src/Components/Endpoint/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Components/Endpoint/index.tsx b/frontend/src/Components/Endpoint/index.tsx index 625e7e8b..bdaf5985 100644 --- a/frontend/src/Components/Endpoint/index.tsx +++ b/frontend/src/Components/Endpoint/index.tsx @@ -1,7 +1,7 @@ import React, { useState } from "react"; import Button from "plaid-threads/Button"; import Note from "plaid-threads/Note"; - +import Telemetry:Off import Table from "../Table"; import Error from "../Error"; import { DataItem, Categories, ErrorDataItem, Data } from "../../dataUtilities";