Skip to content

Commit b22c711

Browse files
committed
linter
1 parent 26a8ebc commit b22c711

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/commandDetails/company/find.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ const CRUNCHBASE_IMAGE_CDN =
1919

2020
const getCompanyFindEmbed = async (
2121
client: SapphireClient<boolean>,
22-
companyId: string,
2322
companyInfo: CrunchbaseCompanyProperties,
2423
companyUsers: CompanyPersonDetails[],
2524
) => {

src/commandDetails/company/profile.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
import { container } from '@sapphire/framework';
22
import {
33
CodeyCommandDetails,
4-
CodeyCommandOptionType,
54
SapphireMessageExecuteType,
65
SapphireMessageResponse,
76
getUserFromMessage,
87
} from '../../codeyCommand';
9-
import { getCompaniesByUserId, getEmployeesByCompanyId } from '../../components/company';
8+
import { getCompaniesByUserId } from '../../components/company';
109

1110
const companyProfileExecuteCommand: SapphireMessageExecuteType = async (
1211
client,
1312
messageFromUser,
14-
args,
1513
): Promise<SapphireMessageResponse> => {
1614
const user = getUserFromMessage(messageFromUser);
1715
const companies = await getCompaniesByUserId(user.id);

src/components/company.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import _ from 'lodash';
21
import { openDB } from './db';
32
import { getCrunchbaseCompanyDetails } from '../utils/companyInfo';
43

0 commit comments

Comments
 (0)