Skip to content

Commit

Permalink
Update internal ops prefix color
Browse files Browse the repository at this point in the history
  • Loading branch information
serjonya-trili committed Apr 5, 2024
1 parent b3729b4 commit 2fb0d9f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/OperationTile/InternalPrefix.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Text } from "@chakra-ui/react";
import { Heading } from "@chakra-ui/react";

import { useGetOperationDestination } from "./useGetOperationDestination";
import colors from "../../style/colors";
import { TzktCombinedOperation } from "../../utils/tezos";

/**
Expand Down Expand Up @@ -38,5 +39,9 @@ export const InternalPrefix: React.FC<{
return null;
}

return <Text marginRight="8px">Internal:</Text>;
return (
<Heading marginRight="4px" color={colors.gray[450]} size="md">
Internal:
</Heading>
);
};

2 comments on commit 2fb0d9f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 86.36% 3046/3527
🟒 Branches 80.58% 1058/1313
🟒 Functions 84.18% 942/1119
🟒 Lines 86.14% 2883/3347

Test suite run success

1324 tests passing in 170 suites.

Report generated by πŸ§ͺjest coverage report action from 2fb0d9f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 86.36% 3046/3527
🟒 Branches 80.58% 1058/1313
🟒 Functions 84.18% 942/1119
🟒 Lines 86.14% 2883/3347

Test suite run success

1324 tests passing in 170 suites.

Report generated by πŸ§ͺjest coverage report action from 2fb0d9f

Please sign in to comment.