summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-04-09 16:11:11 -0400
committerDessalines <tyhou13@gmx.com>2020-04-09 16:11:11 -0400
commited264aba3c12243352f68c2de6a5f21f23778bd0 (patch)
tree32fa529740222bbec1f0c2172fa9a59179c0bcd6 /ui
parent221e35ec38fb9323bf0b0ca1d19dac7884fb79fa (diff)
Updating code url references to https://github.com/LemmyNet/lemmy
Diffstat (limited to 'ui')
-rw-r--r--ui/src/components/sponsors.tsx3
-rw-r--r--ui/src/utils.ts2
2 files changed, 3 insertions, 2 deletions
diff --git a/ui/src/components/sponsors.tsx b/ui/src/components/sponsors.tsx
index 347cb718..643153e6 100644
--- a/ui/src/components/sponsors.tsx
+++ b/ui/src/components/sponsors.tsx
@@ -2,6 +2,7 @@ import { Component } from 'inferno';
import { WebSocketService } from '../services';
import { i18n } from '../i18next';
import { T } from 'inferno-i18next';
+import { repoUrl } from '../utils';
let general = [
'Nathan J. Goode',
@@ -44,7 +45,7 @@ export class Sponsors extends Component<any, any> {
<h5>{i18n.t('donate_to_lemmy')}</h5>
<p>
<T i18nKey="sponsor_message">
- #<a href="https://github.com/dessalines/lemmy">#</a>
+ #<a href={repoUrl}>#</a>
</T>
</p>
<a class="btn btn-secondary" href="https://liberapay.com/Lemmy/">
diff --git a/ui/src/utils.ts b/ui/src/utils.ts
index d659509c..ceb05764 100644
--- a/ui/src/utils.ts
+++ b/ui/src/utils.ts
@@ -44,7 +44,7 @@ import emojiShortName from 'emoji-short-name';
import Toastify from 'toastify-js';
import tippy from 'tippy.js';
-export const repoUrl = 'https://github.com/dessalines/lemmy';
+export const repoUrl = 'https://github.com/LemmyNet/lemmy';
export const helpGuideUrl = '/docs/about_guide.html';
export const markdownHelpUrl = `${helpGuideUrl}#markdown-guide`;
export const sortingHelpUrl = `${helpGuideUrl}#sorting`;