Skip to content

Commit

Permalink
ci: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Oct 4, 2024
1 parent 0dcaec9 commit 7622268
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import {
} from "@/app/shared-metadata";
import { TailwindIndicator } from "@/components/tailwind-indicator";
import { ThemeProvider } from "@/components/theme-provider";
import Background from "./_components/background";
import { TRPCReactQueryProvider } from "@/trpc/react-query";
import Background from "./_components/background";

const inter = Inter({ subsets: ["latin"] });

Expand Down
7 changes: 4 additions & 3 deletions apps/web/src/trpc/react-query.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { loggerLink } from "@trpc/client";
import React, { useState } from "react";
import type React from "react";
import { useState } from "react";
import { endingLink } from "./shared";

import type { AppRouter } from "@openstatus/api";
import { createTRPCReact } from "@trpc/react-query";
import { AppRouter } from "@openstatus/api";
import SuperJSON from "superjson";

export const api = createTRPCReact<AppRouter>();
Expand All @@ -32,7 +33,7 @@ export function TRPCReactQueryProvider({
},
}),
],
})
}),
);
return (
<api.Provider client={trpcClient} queryClient={queryClient}>
Expand Down

0 comments on commit 7622268

Please sign in to comment.