We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f2e13f commit 66fd15fCopy full SHA for 66fd15f
frontend/js/src/settings/digest-settings/DigestSettings.tsx
@@ -14,7 +14,7 @@ export default function DigestSettings() {
14
React.useEffect(() => {
15
async function fetchDigestSettings() {
16
try {
17
- const response = await fetch("/settings/get-digest");
+ const response = await fetch("/settings/digest-setting/");
18
if (!response.ok) {
19
throw new Error(`${response.status} HTTP response.`);
20
}
@@ -38,7 +38,7 @@ export default function DigestSettings() {
38
e.preventDefault();
39
setSaving(true);
40
41
- const response = await fetch("/settings/set-digest", {
+ const response = await fetch("/settings/digest-setting/", {
42
method: "POST",
43
headers: {
44
"Content-Type": "application/json",
0 commit comments