Skip to content

Commit 35f4b4e

Browse files
authored
Merge branch 'master' into ecl
2 parents 73205d0 + f80d817 commit 35f4b4e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/common/src/environment/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export interface Env extends NodeJS.ProcessEnv {
22
ADMIN_API?: string;
33
/**
4-
* @depricated use BASE_HREF
4+
* @deprecated use BASE_HREF
55
*/
66
BASE_URL?: string;
77

@@ -56,7 +56,7 @@ const makeEnvInit = () => {
5656
if (envInit.BASE_URL) {
5757
if (envInit.NODE_ENV !== 'test' && envInit.NODE_ENV !== 'production') {
5858
// eslint-disable-next-line no-console
59-
console.warn('BASE_URL will be depricated.');
59+
console.warn('BASE_URL will be deprecated.');
6060
}
6161
}
6262

packages/oss-console/src/components/Executions/Tables/styles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const grayedClassName = 'grayed';
1313
// specificity in the browser. The execution table styles are overridden by
1414
// the columns styles in some cases. So the column styles should be defined
1515
// last.
16-
// DEPRICATED, REMOVE ONCE VARIFIED
16+
// DEPRECATED, REMOVE ONCE VERIFIED
1717
const executionTableStylesNameSpace = 'EXECUTION_TABLE-';
1818
const executionTableStyles: Record<string, string> = {
1919
filters: `${executionTableStylesNameSpace}filters`,

website/console/env/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const ADMIN_API = ADMIN_API_URL ? `//${ADMIN_API_URL}` : '';
4040
const LOCAL_DEV_HOST = process.env.LOCAL_DEV_HOST || 'localhost';
4141

4242
/**
43-
* @depricated use BASE_HREF
43+
* @deprecated use BASE_HREF
4444
*/
4545
const BASE_URL = process.env.BASE_URL || '';
4646

0 commit comments

Comments
 (0)