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

gitify-app / gitify / 12919978868

23 Jan 2025 12:53AM UTC coverage: 87.059% (-0.04%) from 87.098%
12919978868

Pull #1757

github

web-flow
Merge 2eff4fea1 into 854ff2529
Pull Request #1757: fix: prevent default filters from getting overwritten

585 of 658 branches covered (88.91%)

Branch coverage included in aggregate %.

1 of 1 new or added line in 1 file covered. (100.0%)

1 existing line in 1 file now uncovered.

1662 of 1923 relevant lines covered (86.43%)

23.01 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