diff --git a/README.md b/README.md index 74c9e7c81..6c27bacdb 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/entitlements/entitlements.mac.plist b/entitlements/entitlements.mac.plist index 456321727..3e96a648b 100644 --- a/entitlements/entitlements.mac.plist +++ b/entitlements/entitlements.mac.plist @@ -1,5 +1,5 @@ - + diff --git a/src/components/__snapshots__/Sidebar.test.tsx.snap b/src/components/__snapshots__/Sidebar.test.tsx.snap index 0af5dada7..cb734fe1f 100644 --- a/src/components/__snapshots__/Sidebar.test.tsx.snap +++ b/src/components/__snapshots__/Sidebar.test.tsx.snap @@ -22,8 +22,8 @@ exports[`components/Sidebar.tsx should render itself & its children (logged in) class="size-5" role="img" viewBox="0 0 500 500" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="https://www.w3.org/2000/svg" + xmlns:xlink="https://www.w3.org/1999/xlink" > = ({ 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" diff --git a/src/components/icons/__snapshots__/LogoIcon.test.tsx.snap b/src/components/icons/__snapshots__/LogoIcon.test.tsx.snap index c83b23ceb..59880874f 100644 --- a/src/components/icons/__snapshots__/LogoIcon.test.tsx.snap +++ b/src/components/icons/__snapshots__/LogoIcon.test.tsx.snap @@ -10,8 +10,8 @@ exports[`components/icons/LogoIcon.tsx renders correctly (dark) 1`] = ` class="size-5" role="img" viewBox="0 0 500 500" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="https://www.w3.org/2000/svg" + xmlns:xlink="https://www.w3.org/1999/xlink" > { ).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'); } }); @@ -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'); } });