We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87fe392 commit 6dc8978Copy full SHA for 6dc8978
src/settings/helpSettings.js
@@ -1,22 +1,28 @@
1
import settingsPage from "components/settingsPage";
2
+import constants from "lib/constants";
3
4
export default function help() {
5
const title = strings.help;
6
const items = [
7
+ {
8
+ key: "docs",
9
+ text: strings.documentation,
10
+ link: constants.DOCS_URL,
11
+ },
12
{
13
key: "help",
14
text: strings.help,
- link: "https://telegram.me/foxdebug_acode",
15
+ link: constants.TELEGRAM_URL,
16
},
17
18
key: "faqs",
19
text: strings.faqs,
- link: "https://acode.app/faqs",
20
+ link: `${constants.WEBSITE_URL}/faqs`,
21
22
23
key: "bug_report",
24
text: strings.bug_report,
- link: "https://github.com/deadlyjack/Acode/issues",
25
+ link: `${constants.GITHUB_URL}/issues`,
26
27
];
28
0 commit comments