Skip to content

Commit

Permalink
[spinners] tweaks
Browse files Browse the repository at this point in the history
Signed-off-by: David Echelberger <eberger727@gmail.com>
  • Loading branch information
dechdev committed Apr 13, 2022
1 parent ff941c3 commit ce0f3cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ui/src/components/Accordion/ContractStateAccordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export const ContractStateAccordion: React.FC = () => {
<Grid container>
{contractListeners
?.filter((l) => l.address === api.address)
.map((l) => {
.map((l, idx) => {
return (
<Grid
item
Expand All @@ -137,6 +137,7 @@ export const ContractStateAccordion: React.FC = () => {
direction="row"
justifyContent="space-between"
alignItems="flex-start"
key={idx}
>
<Grid item>
<FFAccordionText
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/Buttons/RunButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const RunButton: React.FC<Props> = ({ endpoint, payload, disabled }) => {
alignItems={'center'}
>
<Grid item xs={11}>
<Typography sx={{ fontSize: '16px', fontWeight: '500' }}>
<Typography sx={{ fontSize: '14px', fontWeight: '500' }}>
{t('waitingForTxEventsToFinish')}
</Typography>
</Grid>
Expand Down

0 comments on commit ce0f3cb

Please sign in to comment.