Skip to content

Commit

Permalink
fix(client): code format
Browse files Browse the repository at this point in the history
  • Loading branch information
kostaspt authored and actions-user committed Jan 9, 2022
1 parent 22fae24 commit 9c020db
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion client/src/components/molecules/ListColumn/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@ type Props = {
};

export default function ListColumn({ children }: Props) {
return <Box display="flex" flexDirection="column" alignItems="center">{children}</Box>;
return (
<Box display="flex" flexDirection="column" alignItems="center">
{children}
</Box>
);
}
4 changes: 3 additions & 1 deletion client/src/components/organisms/Search/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ export default function Search() {
return (
<Stack width="100%" spacing={4}>
<InputGroup>
<InputLeftElement pointerEvents="none"><Search2Icon color="brand" /></InputLeftElement>
<InputLeftElement pointerEvents="none">
<Search2Icon color="brand" />
</InputLeftElement>
<Input
borderColor="gray.500"
borderRadius="full"
Expand Down

0 comments on commit 9c020db

Please sign in to comment.