Skip to content

Commit 6dc8978

Browse files
committed
feat: add. docs url on help page
1 parent 87fe392 commit 6dc8978

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/settings/helpSettings.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
11
import settingsPage from "components/settingsPage";
2+
import constants from "lib/constants";
23

34
export default function help() {
45
const title = strings.help;
56
const items = [
7+
{
8+
key: "docs",
9+
text: strings.documentation,
10+
link: constants.DOCS_URL,
11+
},
612
{
713
key: "help",
814
text: strings.help,
9-
link: "https://telegram.me/foxdebug_acode",
15+
link: constants.TELEGRAM_URL,
1016
},
1117
{
1218
key: "faqs",
1319
text: strings.faqs,
14-
link: "https://acode.app/faqs",
20+
link: `${constants.WEBSITE_URL}/faqs`,
1521
},
1622
{
1723
key: "bug_report",
1824
text: strings.bug_report,
19-
link: "https://github.com/deadlyjack/Acode/issues",
25+
link: `${constants.GITHUB_URL}/issues`,
2026
},
2127
];
2228

0 commit comments

Comments
 (0)