Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

George feedback- round 1 + invoice styling #279

Merged
merged 9 commits into from
May 22, 2024
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: 0 additions & 2 deletions web-portal/frontend/components/apps/endpoints.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const EndpointList: React.FC = () => {
)}
</CopyButton>
</Table.Td>
<Table.Td>{Boolean(endpoint.active) ? "Enabled" : "No"}</Table.Td>
</Table.Tr>
));

Expand All @@ -49,7 +48,6 @@ const EndpointList: React.FC = () => {
<Table.Tr>
<Table.Th style={{ fontWeight: "normal" }}>Network</Table.Th>
<Table.Th style={{ fontWeight: "normal" }}>Your Endpoint</Table.Th>
<Table.Th style={{ fontWeight: "normal" }}>Enabled?</Table.Th>
</Table.Tr>
</Table.Thead>
<Table.Tbody>{rows}</Table.Tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default function SecretKeyForm() {
router.push(`/apps/${appId}?i=rules`);
}}
variant="outline"
color="black"
color="#856853"
loading={isPending && !isSuccess && action === "delete"}
mt={16}
>
Expand Down
2 changes: 1 addition & 1 deletion web-portal/frontend/components/apps/updateAppModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function UpdateAppModal({
router.replace("/dashboard");
}}
variant="outline"
color="black"
color="#856853"
fullWidth
>
Delete App
Expand Down
4 changes: 0 additions & 4 deletions web-portal/frontend/components/billing/invoiceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ const InvoiceList: React.FC = () => {
<Stack>
<Flex justify={"space-between"} align={"center"}>
<Title order={3}>Billing History</Title>

<Button onClick={() => router.push("?download=all")}>
Download All
</Button>
</Flex>
<Table
highlightOnHover
Expand Down
Loading