Skip to content

Commit 184824e

Browse files
authored
Update Footer Links (#1433)
## Description <!-- Please provide a brief description of the changes made in this pull request. Include any relevant context or reasoning for the changes. --> Update the links int he footer to point to tangleml.com ## Related Issue and Pull requests <!-- Link to any related issues using the format #<issue-number> --> ## Type of Change <!-- Please delete options that are not relevant --> - [x] Documentation update ## Checklist <!-- Please ensure the following are completed before submitting the PR --> - [ ] I have tested this does not break current pipelines / runs functionality - [ ] I have tested the changes on staging ## Screenshots (if applicable) <!-- Include any screenshots that might help explain the changes or provide visual context --> ## Test Instructions <!-- Detail steps and prerequisites for testing the changes in this PR --> ## Additional Comments <!-- Add any additional context or information that reviewers might need to know regarding this PR -->
1 parent 6fbe1b7 commit 184824e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/utils/constants.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
/* Environment Config */
22
export const ABOUT_URL =
3-
import.meta.env.VITE_ABOUT_URL || "https://cloud-pipelines.net/";
3+
import.meta.env.VITE_ABOUT_URL || "https://tangleml.com/";
44

55
export const GIVE_FEEDBACK_URL =
66
import.meta.env.VITE_GIVE_FEEDBACK_URL ||
7-
"https://github.com/Cloud-Pipelines/pipeline-studio-app/issues";
7+
"https://github.com/TangleML/tangle/issues";
88

99
export const PRIVACY_POLICY_URL =
1010
import.meta.env.VITE_PRIVACY_POLICY_URL ||
11-
"https://cloud-pipelines.net/privacy_policy";
11+
"https://tangleml.com/privacy_policy";
1212

1313
export const API_URL = import.meta.env.VITE_BACKEND_API_URL || "";
1414
export const BASE_URL = import.meta.env.VITE_BASE_URL || "/";
1515
export const IS_GITHUB_PAGES = import.meta.env.VITE_GITHUB_PAGES === "true";
1616

1717
export const GIT_REPO_URL =
18-
import.meta.env.VITE_GIT_REPO_URL ||
19-
"https://github.com/Cloud-Pipelines/pipeline-studio-app";
18+
import.meta.env.VITE_GIT_REPO_URL || "https://github.com/TangleML/tangle-ui";
2019

2120
export const GIT_COMMIT = import.meta.env.VITE_GIT_COMMIT || "master";
2221

0 commit comments

Comments
 (0)