• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

gitify-app / gitify / 12929377819

23 Jan 2025 12:40PM UTC coverage: 86.687% (+0.008%) from 86.679%
12929377819

Pull #1762

github

web-flow
Merge 9ecd81789 into c3a4b3c36
Pull Request #1762: feat: notification number relo for groupByDate mode

606 of 691 branches covered (87.7%)

Branch coverage included in aggregate %.

6 of 6 new or added lines in 2 files covered. (100.0%)

1686 of 1953 relevant lines covered (86.33%)

22.98 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

83.33
/src/renderer/components/layout/Centered.tsx
1
import { Stack } from '@primer/react';
12✔
2
import type { FC, ReactNode } from 'react';
3

4
interface ICentered {
5
  children: ReactNode;
6
  fullHeight?: boolean;
7
}
8

9
export const Centered: FC<ICentered> = ({
12✔
10
  fullHeight = true,
×
11
  ...props
12
}: ICentered) => {
13
  return (
36✔
14
    <Stack
15
      direction="vertical"
16
      align="center"
17
      justify="center"
18
      padding="spacious"
19
      className={fullHeight && 'min-h-screen'}
30✔
20
    >
21
      {props.children}
22
    </Stack>
23
  );
24
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc