Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
adelloste committed May 23, 2024
1 parent b9b5e9d commit 14afa2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ts/features/services/home/screens/ServicesHomeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import { useOnFirstRender } from "../../../../utils/hooks/useOnFirstRender";
import { InstitutionListSkeleton } from "../../common/components/InstitutionListSkeleton";
import { useFirstRender } from "../../common/hooks/useFirstRender";
import { SERVICES_ROUTES } from "../../common/navigation/routes";
import { getLogoForInstitution } from "../../common/utils";
import { useInstitutionsFetcher } from "../hooks/useInstitutionsFetcher";
import { featuredInstitutionsGet, featuredServicesGet } from "../store/actions";
import { logoForInstitution } from "../utils";
import { FeaturedInstitutionList } from "../components/FeaturedInstitutionList";
import { FeaturedServiceList } from "../components/FeaturedServiceList";

Expand Down Expand Up @@ -112,7 +112,7 @@ export const ServicesHomeScreen = () => {
onPress={() => navigateToInstitution(item)}
accessibilityLabel={item.name}
avatarProps={{
logoUri: logoForInstitution(item)
logoUri: getLogoForInstitution(item.fiscal_code)
}}
/>
),
Expand Down
2 changes: 1 addition & 1 deletion ts/features/services/search/screens/SearchScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const SearchScreen = () => {
placeholder={I18n.t("services.search.input.placeholder")}
textInputProps={{
autoCorrect: false,
inputMode: "text",
inputMode: "search",
returnKeyType: "search"
}}
autoFocus={true}
Expand Down

0 comments on commit 14afa2c

Please sign in to comment.