Skip to content

Commit

Permalink
Merge branch 'master' into ecl
Browse files Browse the repository at this point in the history
  • Loading branch information
va6996 committed May 14, 2024
2 parents 73205d0 + f80d817 commit 35f4b4e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/common/src/environment/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export interface Env extends NodeJS.ProcessEnv {
ADMIN_API?: string;
/**
* @depricated use BASE_HREF
* @deprecated use BASE_HREF
*/
BASE_URL?: string;

Expand Down Expand Up @@ -56,7 +56,7 @@ const makeEnvInit = () => {
if (envInit.BASE_URL) {
if (envInit.NODE_ENV !== 'test' && envInit.NODE_ENV !== 'production') {
// eslint-disable-next-line no-console
console.warn('BASE_URL will be depricated.');
console.warn('BASE_URL will be deprecated.');
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const grayedClassName = 'grayed';
// specificity in the browser. The execution table styles are overridden by
// the columns styles in some cases. So the column styles should be defined
// last.
// DEPRICATED, REMOVE ONCE VARIFIED
// DEPRECATED, REMOVE ONCE VERIFIED
const executionTableStylesNameSpace = 'EXECUTION_TABLE-';
const executionTableStyles: Record<string, string> = {
filters: `${executionTableStylesNameSpace}filters`,
Expand Down
2 changes: 1 addition & 1 deletion website/console/env/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const ADMIN_API = ADMIN_API_URL ? `//${ADMIN_API_URL}` : '';
const LOCAL_DEV_HOST = process.env.LOCAL_DEV_HOST || 'localhost';

/**
* @depricated use BASE_HREF
* @deprecated use BASE_HREF
*/
const BASE_URL = process.env.BASE_URL || '';

Expand Down

0 comments on commit 35f4b4e

Please sign in to comment.