Skip to content

Commit

Permalink
Clean up deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
mersocarlin committed May 4, 2024
1 parent 68714f9 commit 0b8a456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/root.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useEffect, useRef } from 'react'
import type {
DataFunctionArgs,
LinksFunction,
LoaderFunctionArgs,
MetaFunction,
} from '@remix-run/node'
import {
Expand Down Expand Up @@ -91,7 +91,7 @@ export const meta: MetaFunction = () => {
]
}

export async function loader({ request }: DataFunctionArgs) {
export async function loader({ request }: LoaderFunctionArgs) {
const themeSession = await getThemeSession(request)

return {
Expand Down

0 comments on commit 0b8a456

Please sign in to comment.