From a03f1dc2ac25579df30e8cb59d2703110c3e564d Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Wed, 13 Mar 2024 22:37:41 +0000 Subject: lint: Lint and format the entire repo with the new configs --- apps/mobile/lib/providers.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'apps/mobile/lib/providers.tsx') diff --git a/apps/mobile/lib/providers.tsx b/apps/mobile/lib/providers.tsx index 1717afb2..036e8ae2 100644 --- a/apps/mobile/lib/providers.tsx +++ b/apps/mobile/lib/providers.tsx @@ -1,13 +1,12 @@ +import { useEffect, useState } from "react"; +import { ToastProvider } from "@/components/ui/Toast"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import { httpBatchLink } from "@trpc/client"; -import { useEffect, useState } from "react"; import superjson from "superjson"; import useAppSettings, { getAppSettings } from "./settings"; import { api } from "./trpc"; -import { ToastProvider } from "@/components/ui/Toast"; - function getTRPCClient(address: string) { return api.createClient({ links: [ @@ -16,10 +15,9 @@ function getTRPCClient(address: string) { async headers() { const settings = await getAppSettings(); return { - Authorization: - settings && settings.apiKey - ? `Bearer ${settings.apiKey}` - : undefined, + Authorization: settings?.apiKey + ? `Bearer ${settings.apiKey}` + : undefined, }; }, transformer: superjson, -- cgit v1.2.3-70-g09d2