Skip to content

Commit

Permalink
Merge pull request #918 from InseeFr/fix/solve-import
Browse files Browse the repository at this point in the history
fix: solve import
  • Loading branch information
PierreVasseur authored Sep 2, 2024
2 parents 2ed8252 + aed0d59 commit 93981f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/packages/modules-datasets/datasets/useThemes.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { renderHook, waitFor } from '@testing-library/react';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { useThemes } from './useThemes';
import { ThemesApi } from '../../sdk';
import { Theme } from '../../model/Theme';
import { Theme } from '../../model/theme';
import React, { PropsWithChildren } from 'react';

const queryClient = new QueryClient();
Expand Down
2 changes: 1 addition & 1 deletion src/packages/modules-datasets/datasets/useThemes.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useQuery } from '@tanstack/react-query';
import { ThemesApi } from '../../sdk';
import { Options } from '../../model/SelectOption';
import { Theme } from '../../model/Theme';
import { Theme } from '../../model/theme';

export const useThemes = () =>
useQuery<Options>({
Expand Down

0 comments on commit 93981f6

Please sign in to comment.