Skip to content

Commit

Permalink
🐛 fix: fix github url
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Feb 25, 2024
1 parent 6c3856e commit 42ea0f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/SideBar/BottomActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { memo } from 'react';
import { useTranslation } from 'react-i18next';
import { Flexbox } from 'react-layout-kit';

import { ABOUT, CHANGELOG, DISCORD, DOCUMENTS, FEEDBACK } from '@/const/url';
import { ABOUT, CHANGELOG, DISCORD, DOCUMENTS, FEEDBACK, GITHUB } from '@/const/url';
import DataImporter from '@/features/DataImporter';
import { configService } from '@/services/config';
import { GlobalStore, useGlobalStore } from '@/store/global';
Expand Down Expand Up @@ -120,7 +120,7 @@ const BottomActions = memo<BottomActionProps>(({ tab }) => {

return (
<>
<Link aria-label={'GitHub'} href={DOCUMENTS} target={'_blank'}>
<Link aria-label={'GitHub'} href={GITHUB} target={'_blank'}>
<ActionIcon icon={Github} placement={'right'} title={'GitHub'} />
</Link>
<Link aria-label={t('document')} href={DOCUMENTS} target={'_blank'}>
Expand Down

0 comments on commit 42ea0f5

Please sign in to comment.