Skip to content

Commit c0e6ba4

Browse files
committed
fix: formatting
1 parent e9ab9a5 commit c0e6ba4

File tree

2 files changed

+3
-21
lines changed

2 files changed

+3
-21
lines changed

src/renderer/components/primitives/Header.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,7 @@ export const Header: FC<IHeader> = (props: IHeader) => {
3737

3838
<Stack direction="horizontal" align="center" gap="condensed">
3939
<Octicon icon={props.icon} size={Size.LARGE} />
40-
<Heading
41-
sx={{
42-
fontSize: 3,
43-
}}
44-
>
45-
{props.children}
46-
</Heading>
40+
<Heading sx={{ fontSize: 3 }}>{props.children}</Heading>
4741
</Stack>
4842
</Stack>
4943
</div>

src/renderer/routes/Login.tsx

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,8 @@ export const LoginRoute: FC = () => {
3636
<LogoIcon size={Size.LARGE} isDark />
3737

3838
<Stack align="center" gap="none">
39-
<Heading
40-
sx={{
41-
fontSize: 4,
42-
}}
43-
>
44-
GitHub Notifications
45-
</Heading>
46-
<Heading
47-
sx={{
48-
fontSize: 3,
49-
}}
50-
>
51-
on your menu bar
52-
</Heading>
39+
<Heading sx={{ fontSize: 4 }}>GitHub Notifications</Heading>
40+
<Heading sx={{ fontSize: 3 }}>on your menu bar</Heading>
5341
</Stack>
5442

5543
<Stack align="center" gap="condensed">

0 commit comments

Comments
 (0)