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
6 changes: 3 additions & 3 deletions src/renderer/components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ const About: React.FC = () => {
{t('about.subtitle')}
</Text>
<Space style={{ marginTop: 16 }}>
<Button onClick={() => handleOpenLink('https://github.com/MarkPDFdown')}>
<Button onClick={() => handleOpenLink('https://github.com/MarkPDFdown/markpdfdown-desktop')}>
{t('about.buttons.website')}
</Button>
<Button onClick={() => handleOpenLink('https://github.com/MarkPDFdown/desktop/blob/master/LICENSE')}>
<Button onClick={() => handleOpenLink('https://github.com/MarkPDFdown/markpdfdown-desktop/blob/master/LICENSE')}>
{t('about.buttons.license')}
</Button>
<Button onClick={() => handleOpenLink('https://github.com/MarkPDFdown/desktop/issues')}>
<Button onClick={() => handleOpenLink('https://github.com/MarkPDFdown/markpdfdown-desktop/issues')}>
{t('about.buttons.feedback')}
</Button>
<Button onClick={() => handleOpenLink('mailto:jorben@aix.me')}>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ const AppLayout: React.FC = () => {
padding: '16px 0'
}}>
<div
onClick={() => openExternalLink('https://github.com/MarkPDFdown/desktop')}
onClick={() => openExternalLink('https://github.com/MarkPDFdown/markpdfdown-desktop')}
style={{
color: 'rgba(255, 255, 255, 0.65)',
fontSize: '20px',
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/components/__tests__/About.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe('About', () => {
const websiteButton = screen.getByText('Website')
fireEvent.click(websiteButton)

expect(mockWindowOpen).toHaveBeenCalledWith('https://github.com/MarkPDFdown', '_blank')
expect(mockWindowOpen).toHaveBeenCalledWith('https://github.com/MarkPDFdown/markpdfdown-desktop', '_blank')
})

it('should open license link when License button is clicked', () => {
Expand All @@ -134,7 +134,7 @@ describe('About', () => {
fireEvent.click(licenseButton)

expect(mockWindowOpen).toHaveBeenCalledWith(
'https://github.com/MarkPDFdown/desktop/blob/master/LICENSE',
'https://github.com/MarkPDFdown/markpdfdown-desktop/blob/master/LICENSE',
'_blank'
)
})
Expand All @@ -150,7 +150,7 @@ describe('About', () => {
fireEvent.click(feedbackButton)

expect(mockWindowOpen).toHaveBeenCalledWith(
'https://github.com/MarkPDFdown/desktop/issues',
'https://github.com/MarkPDFdown/markpdfdown-desktop/issues',
'_blank'
)
})
Expand Down
Loading