Skip to content

Commit

Permalink
hard code site url frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
maidul98 committed Feb 10, 2023
1 parent eebde3a commit 081ef94
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/components/utilities/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ const POSTHOG_HOST =
process.env.NEXT_PUBLIC_POSTHOG_HOST! || "https://app.posthog.com";
const STRIPE_PRODUCT_PRO = process.env.NEXT_PUBLIC_STRIPE_PRODUCT_PRO!;
const STRIPE_PRODUCT_STARTER = process.env.NEXT_PUBLIC_STRIPE_PRODUCT_STARTER!;
const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL!;
const SITE_URL = "https://app.infisical.com";

export {
ENV,
POSTHOG_API_KEY,
POSTHOG_HOST,
SITE_URL,
STRIPE_PRODUCT_PRO,
STRIPE_PRODUCT_STARTER};
STRIPE_PRODUCT_STARTER
};

2 comments on commit 081ef94

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for backend

St.
Category Percentage Covered / Total
🟡 Statements 74.12% 63/85
🔴 Branches 0% 0/5
🔴 Functions 50% 1/2
🟡 Lines 75% 63/84

Test suite run success

1 tests passing in 1 suite.

Report generated by 🧪jest coverage report action from 081ef94

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for backend

St.
Category Percentage Covered / Total
🟡 Statements 74.12% 63/85
🔴 Branches 0% 0/5
🔴 Functions 50% 1/2
🟡 Lines 75% 63/84

Test suite run success

1 tests passing in 1 suite.

Report generated by 🧪jest coverage report action from 081ef94

Please sign in to comment.