weareinreach / InReach

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
3 occurrences in this check
Documentation comment not found for arrow function LocationBasedAlertBanner
49	},
50}))
51
52export const LocationBasedAlertBanner = ({53	i18nKey,
54	ns,
55	defaultText,
Documentation comment not found for arrow function RenderWrapper
 5
 6import { LocationBasedAlertBanner } from './index'
 7
 8const RenderWrapper = ({ lat, lon }: { lat: number; lon: number }) => { 9	const { data } = api.component.LocationBasedAlertBanner.useQuery({ lat, lon })
10
11	const item = data?.at(0)
Documentation comment not found for arrow function LocationBasedAlertBanner
 4
 5import { type TLocationBasedAlertBannerSchema } from './query.LocationBasedAlertBanner.schema'
 6
 7export const LocationBasedAlertBanner = async ({ 8	input,
 9}: TRPCHandlerParams<TLocationBasedAlertBannerSchema>) => {
10	try {