chore(ui): lint

This commit is contained in:
psychedelicious
2024-01-04 19:48:50 +11:00
committed by Kent Keirsey
parent 2d922a0a65
commit ac0d0019bd
3 changed files with 7 additions and 10 deletions

View File

@ -11,7 +11,11 @@ export const InvTab = memo(
<ChakraTab ref={ref} {...rest}>
{children}
<Spacer />
{badges?.map((b, i) => <InvBadge key={`${b}.${i}`} colorScheme='invokeYellow'>{b}</InvBadge>)}
{badges?.map((b, i) => (
<InvBadge key={`${b}.${i}`} colorScheme="invokeYellow">
{b}
</InvBadge>
))}
</ChakraTab>
);
})