Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ For more information, see [LICENSE](LICENSE).
[github-releases]: https://github.com/gitify-app/gitify/releases/latest
[github-website]: https://github.com/gitify-app/website
[github-website-pulls]: https://github.com/gitify-app/website/pulls
[brew]: http://brew.sh/
[brew]: https://brew.sh/
[homebrew-cask]: https://formulae.brew.sh/cask/gitify
[coveralls]: https://coveralls.io/github/gitify-app/gitify
[coveralls-badge]: https://img.shields.io/coverallsCoverage/github/gitify-app/gitify?logo=coveralls
Expand Down
2 changes: 1 addition & 1 deletion entitlements/entitlements.mac.plist
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<!-- As per https://github.com/electron-userland/electron-builder/blob/master/packages/app-builder-lib/templates/entitlements.mac.plist -->
<dict>
Expand Down
16 changes: 8 additions & 8 deletions src/components/__snapshots__/Sidebar.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/components/icons/LogoIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export const LogoIcon: FC<ILogoIcon> = ({
size === Size.LARGE && 'size-16',
)}
onClick={() => onClick?.()}
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
xmlns="https://www.w3.org/2000/svg"
xmlnsXlink="https://www.w3.org/1999/xlink"
viewBox="0 0 500 500"
role="img"
aria-label="Gitify Logo"
Expand Down
40 changes: 20 additions & 20 deletions src/components/icons/__snapshots__/LogoIcon.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/routes/__snapshots__/Login.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/utils/auth/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('utils/auth/utils.ts', () => {
).mockImplementation((event, callback): void => {
if (event === 'will-redirect') {
const event = new Event('will-redirect');
callback(event, 'http://github.com/?code=123-456');
callback(event, 'https://github.com/?code=123-456');
}
});

Expand All @@ -59,7 +59,7 @@ describe('utils/auth/utils.ts', () => {
).mockImplementation((event, callback): void => {
if (event === 'will-redirect') {
const event = new Event('will-redirect');
callback(event, 'http://www.github.com/?error=Oops');
callback(event, 'https://www.github.com/?error=Oops');
}
});

Expand Down