Skip to content

Commit

Permalink
fix: tr dev url (#961)
Browse files Browse the repository at this point in the history
  • Loading branch information
nghaninn authored Dec 4, 2024
1 parent 9f34837 commit a0f0f4d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
export enum URLS {
INFO = "https://tradetrust.io",
REF = "https://ref.tradetrust.io",
CREATOR = "https://creator.tradetrust.io/",
GITHUB = "https://github.com/TradeTrust/tradetrust-website",
DOCS = "https://docs.tradetrust.io/",
FAQ = "https://www.tradetrust.io/common-error-faqs/",
}
export const URLS = {
INFO: "https://tradetrust.io",
REF: process.env.NODE_ENV === "development" ? "https://dev.tradetrust.io" : "https://ref.tradetrust.io",
CREATOR: "https://creator.tradetrust.io/",
GITHUB: "https://github.com/TradeTrust/tradetrust-website",
DOCS: "https://docs.tradetrust.io/",
FAQ: "https://www.tradetrust.io/common-error-faqs/",
};

export enum FaqType {
GENERAL = "General",
Expand Down

0 comments on commit a0f0f4d

Please sign in to comment.