Skip to content

Commit

Permalink
Fix some typos so IDE highlights the fields (#870)
Browse files Browse the repository at this point in the history
Fix typos to make IDE happy

Signed-off-by: Rafael Raposo <rafaelraposo@spotify.com>
  • Loading branch information
RRap0so committed May 13, 2024
1 parent 364191e commit f80d817
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.${ADMIN_API_URL}`;

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

Expand Down

0 comments on commit f80d817

Please sign in to comment.