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

gitify-app / gitify / 12930609214

23 Jan 2025 01:49PM UTC coverage: 86.764% (+0.005%) from 86.759%
12930609214

Pull #1765

github

web-flow
Merge 6eae350e5 into 2c04f82f8
Pull Request #1765: refactor: error page fallback

615 of 701 branches covered (87.73%)

Branch coverage included in aggregate %.

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

1699 of 1966 relevant lines covered (86.42%)

23.26 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 (
38✔
14
    <Stack
15
      direction="vertical"
16
      align="center"
17
      justify="center"
18
      padding="spacious"
19
      className={fullHeight && 'min-h-screen'}
32✔
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