Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard87 committed Jan 10, 2024
1 parent da97178 commit f8772df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions src/components/app-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ export default function AppList() {
[]
);

const { data: appsData, ...appsState } = useShowApplicationsQuery(
{},
{ pollingInterval }
);
const {
data: appsData,
refetch,
...appsState
} = useShowApplicationsQuery({}, { pollingInterval });
const { data: favsData, ...favsState } = useGetSearchApplicationsQuery(
{
apps: favourites?.join(','),
Expand Down
2 changes: 1 addition & 1 deletion src/components/page-create-application/dev.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default (
padding: '16px',
}}
>
<PageCreateApplication />
<PageCreateApplication refetch={() => {}} />
</div>
);

0 comments on commit f8772df

Please sign in to comment.