Skip to content

Commit

Permalink
🐛 Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed May 23, 2024
1 parent 9aaad44 commit 4099234
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions packages/shared/src/connectors/metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2086,5 +2086,3 @@ export const CONNECTORS_METADATA: ProvidersConfig = {
},
}
};


4 changes: 1 addition & 3 deletions packages/shared/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { ACCOUNTING_PROVIDERS, ATS_PROVIDERS, CRM_PROVIDERS, FILESTORAGE_PROVIDE
import { AuthStrategy, VerticalConfig } from './types';
import { categoriesVerticals, ConnectorCategory } from './categories';


export const randomString = () => {
const charSet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
let result = '';
Expand All @@ -14,7 +13,6 @@ export const randomString = () => {
return result;
}


function getActiveProvidersForVertical(vertical: string): VerticalConfig {
const verticalConfig = CONNECTORS_METADATA[vertical.toLowerCase()];
if (!verticalConfig) {
Expand Down Expand Up @@ -186,4 +184,4 @@ export function categoryFromSlug(slug: string): ConnectorCategory | null {
default:
return null;
}
}
}

0 comments on commit 4099234

Please sign in to comment.