Skip to content
Closed
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
4 changes: 2 additions & 2 deletions src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ export const Sidebar: React.FC = () => {

<div
className={footerButtonClasses}
onClick={onOpenBrowser}
aria-label="View project on GitHub"
onClick={onOpenGitHubNotifications}
aria-label="Open notifications page on GitHub"
>
<Octicons.MarkGithubIcon size={15} />
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/utils/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export const authGitHub = (
return new Promise((resolve, reject) => {
// Build the OAuth consent page URL
const authWindow = new BrowserWindow({
width: 800,
height: 600,
width: 548,
height: 780,
show: true,
});

Expand Down