Skip to content

Commit 1ebba85

Browse files
committed
Lint
1 parent eec9e6f commit 1ebba85

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/dashboard/filters/CreatedByFilter.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function CreatedByFilter({ meta, ...props }: FilterComponentProps<z.infer<typeof
5252
const [options, setOptions] = React.useState<{ label: React.ReactNode; keywords: string[]; value: string }[]>([]);
5353

5454
const [search, { loading, data }] = useLazyQuery(createdByFilterSearchQuery, {
55-
variables: { account: { slug: meta.accountSlug }, expectedFundsFilter: 'ONLY_PENDING', hostContext: 'ALL' },
55+
variables: { expectedFundsFilter: 'ONLY_PENDING', hostContext: 'ALL' },
5656
fetchPolicy: 'cache-first',
5757
notifyOnNetworkStatusChange: true,
5858
});
@@ -62,6 +62,7 @@ function CreatedByFilter({ meta, ...props }: FilterComponentProps<z.infer<typeof
6262
search({
6363
variables: {
6464
searchTerm: searchTerm || undefined,
65+
account: { slug: meta.accountSlug },
6566
},
6667
});
6768
},

0 commit comments

Comments
 (0)