Skip to content

Commit

Permalink
Run yarn format
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuayoes committed Apr 13, 2023
1 parent 637f4c2 commit 6fe30e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/screens/ExploreScreen/ExploreScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { RawRecommendations } from "../../services/api/webflow-api.types"
import { StaticCarouselProps } from "../../components/carousel/carousel.types"

const recommendationTypes = Object.values(WEBFLOW_MAP.recommendationType)
type RecommendationType = typeof recommendationTypes[number]
type RecommendationType = (typeof recommendationTypes)[number]
type GroupedRecommendations = Record<RecommendationType, RawRecommendations[]>

const initialRecs = recommendationTypes.reduce<GroupedRecommendations>(
Expand Down
2 changes: 1 addition & 1 deletion app/screens/InfoScreen/OurSponsorsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { colors, spacing } from "../../theme"
import { SponsorCard } from "./SponsorCard"

const sponsorTiers = Object.values(WEBFLOW_MAP.sponsorTier)
type Tiers = typeof sponsorTiers[number]
type Tiers = (typeof sponsorTiers)[number]

const initialTiers = sponsorTiers.reduce<Record<Tiers, RawSponsor[]>>(
(acc, tier) => ({ ...acc, [tier]: [] }),
Expand Down

0 comments on commit 6fe30e6

Please sign in to comment.