Skip to content

Commit

Permalink
Fix audit alignment (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrederikBolding authored Sep 8, 2023
1 parent 95717d2 commit 09ce3e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/SnapAudits.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box, Link, Text } from '@chakra-ui/react';
import { Link, Text } from '@chakra-ui/react';
import type { FunctionComponent } from 'react';
import { useMemo } from 'react';

Expand Down Expand Up @@ -41,7 +41,7 @@ export const SnapAudits: FunctionComponent<SnapAuditsProps> = ({ audits }) => {
const groupedAudits = useMemo(() => getAudits(audits), [audits]);

return (
<Box>
<>
{Object.entries(groupedAudits).map(([auditor, reports]) => {
if (reports.length === 1) {
return (
Expand Down Expand Up @@ -69,6 +69,6 @@ export const SnapAudits: FunctionComponent<SnapAuditsProps> = ({ audits }) => {
</Text>
);
})}
</Box>
</>
);
};

0 comments on commit 09ce3e9

Please sign in to comment.