Revize a62d7c92
Přidáno uživatelem Michal Schwob před více než 1 rok
src/pages/SearchPage.tsx | ||
---|---|---|
21 | 21 |
import { AppDispatch } from "../stores/store" |
22 | 22 |
import { log } from "../logging/logger" |
23 | 23 |
import { DrawerScreenProps } from "@react-navigation/drawer" |
24 |
import { RootDrawerParamList } from "./Navigation"
|
|
24 |
import { RootStackParamList } from "./Navigation"
|
|
25 | 25 |
|
26 | 26 |
|
27 |
const SearchPage = ({route, navigation}: DrawerScreenProps<RootDrawerParamList, 'Search'>) => {
|
|
27 |
const SearchPage = ({route, navigation}: DrawerScreenProps<RootStackParamList, 'Search'>) => {
|
|
28 | 28 |
const dispatch = useDispatch<AppDispatch>() |
29 | 29 |
|
30 | 30 |
useEffect(() => { |
Také k dispozici: Unified diff
FIX: compilation error fixes
re #10847