Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
chore: use readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
tolluset committed Jan 23, 2024
1 parent 8528a47 commit 8b979c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/Providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
export default function Providers({
children,
}: {
children: Readonly<React.ReactNode>;
readonly children: React.ReactNode;
}) {
const [queryClient, _] = useState(
const [queryClient] = useState(
() =>
new QueryClient({
defaultOptions: {
Expand Down

0 comments on commit 8b979c5

Please sign in to comment.