Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kentcdodds committed May 31, 2024
1 parent 1829912 commit 9922369
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/routes/users+/$username_+/recipients.$recipientId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { cn, useDoubleCheck, useIsPending } from '#app/utils/misc.tsx'
import { requireUserWithPermission } from '#app/utils/permissions.server.ts'
import { redirectWithToast } from '#app/utils/toast.server.ts'
import { userHasPermission, useOptionalUser } from '#app/utils/user.ts'
import { type loader as recipientsLoader } from './receipients.tsx'
import { type loader as recipientsLoader } from './recipients.tsx'

export async function loader({ params }: LoaderFunctionArgs) {
const recipient = await prisma.recipient.findUnique({
Expand Down
2 changes: 1 addition & 1 deletion app/routes/users+/$username_+/recipients.index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type MetaFunction } from '@remix-run/react'
import { type loader as recipientsLoader } from './receipients.tsx'
import { type loader as recipientsLoader } from './recipients.tsx'

export default function RecipientsIndexRoute() {
return (
Expand Down

0 comments on commit 9922369

Please sign in to comment.