This repository was archived by the owner on May 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { EmptyState } from '@codiga/components';
3
3
import { APP_URL } from '../../lib/config' ;
4
4
import { useFilters } from '../FiltersContext' ;
5
5
6
- export default function CookbookTableEmptyFiltereed ( ) {
6
+ export default function CookbookTableEmptyFiltered ( ) {
7
7
const { resetAllFilters } = useFilters ( ) ;
8
8
9
9
return (
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { AssistantCookbook } from '../types/assistantTypes';
4
4
import CookbookTableLoading from '../components/CookbookTable/CookbookTableLoading' ;
5
5
import CookbookTableError from '../components/CookbookTable/CookbookTableError' ;
6
6
import CookbookTableEmpty from '../components/CookbookTable/CookbookTableEmpty' ;
7
- import CookbookTableEmptyFiltereed from '../components/CookbookTable/CookbookTableEmptyFiltered' ;
7
+ import CookbookTableEmptyFiltered from '../components/CookbookTable/CookbookTableEmptyFiltered' ;
8
8
import CookbookTable from '../components/CookbookTable/CookbookTable' ;
9
9
import { useFilters } from '../components/FiltersContext' ;
10
10
import filterBy from '../components/Filters/filterBy' ;
@@ -47,7 +47,7 @@ export default function FavoriteCookbooks() {
47
47
}
48
48
49
49
if ( filteredCookbooks . length === 0 ) {
50
- return < CookbookTableEmptyFiltereed /> ;
50
+ return < CookbookTableEmptyFiltered /> ;
51
51
}
52
52
53
53
return < CookbookTable page = "favorite" cookbooks = { filteredCookbooks } /> ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { AssistantCookbook } from '../types/assistantTypes';
4
4
import CookbookTableLoading from '../components/CookbookTable/CookbookTableLoading' ;
5
5
import CookbookTableError from '../components/CookbookTable/CookbookTableError' ;
6
6
import CookbookTableEmpty from '../components/CookbookTable/CookbookTableEmpty' ;
7
- import CookbookTableEmptyFiltereed from '../components/CookbookTable/CookbookTableEmptyFiltered' ;
7
+ import CookbookTableEmptyFiltered from '../components/CookbookTable/CookbookTableEmptyFiltered' ;
8
8
import CookbookTable from '../components/CookbookTable/CookbookTable' ;
9
9
import { useFilters } from '../components/FiltersContext' ;
10
10
import filterBy from '../components/Filters/filterBy' ;
@@ -47,7 +47,7 @@ export default function MyCookbooks() {
47
47
}
48
48
49
49
if ( filteredCookbooks . length === 0 ) {
50
- return < CookbookTableEmptyFiltereed /> ;
50
+ return < CookbookTableEmptyFiltered /> ;
51
51
}
52
52
53
53
return < CookbookTable page = "my" cookbooks = { filteredCookbooks } /> ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { AssistantCookbook } from '../types/assistantTypes';
4
4
import CookbookTableLoading from '../components/CookbookTable/CookbookTableLoading' ;
5
5
import CookbookTableError from '../components/CookbookTable/CookbookTableError' ;
6
6
import CookbookTableEmpty from '../components/CookbookTable/CookbookTableEmpty' ;
7
- import CookbookTableEmptyFiltereed from '../components/CookbookTable/CookbookTableEmptyFiltered' ;
7
+ import CookbookTableEmptyFiltered from '../components/CookbookTable/CookbookTableEmptyFiltered' ;
8
8
import CookbookTable from '../components/CookbookTable/CookbookTable' ;
9
9
import { useFilters } from '../components/FiltersContext' ;
10
10
import filterBy from '../components/Filters/filterBy' ;
@@ -46,7 +46,7 @@ export default function TeamCookbooks() {
46
46
}
47
47
48
48
if ( filteredCookbooks . length === 0 ) {
49
- return < CookbookTableEmptyFiltereed /> ;
49
+ return < CookbookTableEmptyFiltered /> ;
50
50
}
51
51
52
52
return < CookbookTable page = "team" cookbooks = { filteredCookbooks } /> ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { AssistantRecipeWithStats } from '../types/assistantTypes';
4
4
import SnippetTableLoading from '../components/SnippetTable/SnippetTableLoading' ;
5
5
import SnippetTableError from '../components/SnippetTable/SnippetTableError' ;
6
6
import SnippetTableEmpty from '../components/SnippetTable/SnippetTableEmpty' ;
7
- import SnippetTableEmptyFiltereed from '../components/SnippetTable/SnippetTableEmptyFiltered' ;
7
+ import SnippetTableEmptyFiltered from '../components/SnippetTable/SnippetTableEmptyFiltered' ;
8
8
import SnippetTable from '../components/SnippetTable/SnippetTable' ;
9
9
import filterBy from '../components/Filters/filterBy' ;
10
10
import { useFilters } from '../components/FiltersContext' ;
@@ -49,7 +49,7 @@ export default function TeamSnippets() {
49
49
}
50
50
51
51
if ( filteredRecipes . length === 0 ) {
52
- return < SnippetTableEmptyFiltereed /> ;
52
+ return < SnippetTableEmptyFiltered /> ;
53
53
}
54
54
55
55
return < SnippetTable page = "team" recipes = { filteredRecipes } /> ;
You can’t perform that action at this time.
0 commit comments