Skip to content

Commit

Permalink
chore: Run lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
7nohe committed Oct 26, 2024
1 parent 092bde2 commit f304cc6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/react-router-7-app/app/routes/_index/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from "../../../openapi/queries";
import { prefetchUseFindPets } from "../../../openapi/queries/prefetch";
import "./App.css";
import type * as Route from "./+types.route"
import type * as Route from "./+types.route";

export async function loader({ params }: Route.LoaderArgs) {
const queryClient = new QueryClient();
Expand Down
2 changes: 1 addition & 1 deletion examples/react-router-7-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
"typescript": "^5.4.5",
"vite": "^5.0.12"
}
}
}
4 changes: 2 additions & 2 deletions examples/react-router-7-app/providers.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "./fetchClient";
import { QueryClientProvider } from "@tanstack/react-query";
import { ReactQueryDevtools } from "@tanstack/react-query-devtools";
import { QueryClient } from "@tanstack/react-query";
import { ReactQueryDevtools } from "@tanstack/react-query-devtools";
import React from "react";

export default function Providers({ children }: { children: React.ReactNode }) {
Expand All @@ -16,7 +16,7 @@ export default function Providers({ children }: { children: React.ReactNode }) {
},
},
}),
)
);

return (
<QueryClientProvider client={queryClient}>
Expand Down
2 changes: 1 addition & 1 deletion examples/react-router-7-app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
"rootDirs": [".", "./.react-router/types"],
"plugins": [{ "name": "@react-router/dev" }]
}
}
}

0 comments on commit f304cc6

Please sign in to comment.