Skip to content

Commit 61715a5

Browse files
committed
fix: lint
1 parent 0fb210f commit 61715a5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • services/libs/data-access-layer/src/members

services/libs/data-access-layer/src/members/base.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ const getOrderClause = (orderBy: string, withAggregates: boolean): string => {
173173

174174
const buildSearchCTE = (
175175
search: string,
176-
): { cte: string; join: string; params: Record<string, any> } => {
176+
): { cte: string; join: string; params: Record<string, string> } => {
177177
if (!search?.trim()) {
178178
return { cte: '', join: '', params: {} }
179179
}
@@ -335,7 +335,7 @@ export async function queryMembersAdvanced(
335335
qx: QueryExecutor,
336336
redis: RedisClient,
337337
{
338-
filter = {} as any,
338+
filter = {},
339339
search = null,
340340
limit = 20,
341341
offset = 0,
@@ -603,7 +603,7 @@ export async function moveAffiliationsBetweenMembers(
603603
fromMemberId: string,
604604
toMemberId: string,
605605
): Promise<void> {
606-
const params: any = {
606+
const params: Record<string, string> = {
607607
fromMemberId,
608608
toMemberId,
609609
}

0 commit comments

Comments
 (0)