From 860f48e70cbb4e6f9c52a283a1ecca1acaa84a95 Mon Sep 17 00:00:00 2001 From: bhavberi Date: Sat, 15 Jun 2024 13:15:55 +0000 Subject: [PATCH] Apply Prettier Formatting Fixes --- src/app/layout.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/layout.jsx b/src/app/layout.jsx index d6bea70b..d98a04d5 100644 --- a/src/app/layout.jsx +++ b/src/app/layout.jsx @@ -5,7 +5,8 @@ import Progressbar from "components/Progressbar"; import Toast, { ToastProvider } from "components/Toast"; import { Navigation, Content } from "components/Layout"; -import { getClient } from "gql/client"; import { GET_CLUB } from "gql/queries/clubs"; +import { getClient } from "gql/client"; +import { GET_CLUB } from "gql/queries/clubs"; import { GET_USER } from "gql/queries/auth"; import { AuthProvider } from "components/AuthProvider"; import { fontClass } from "components/ThemeRegistry/typography"; @@ -20,7 +21,7 @@ export default async function RootLayout({ children }) { // fetch currently logged in user const { data: { userMeta, userProfile } = {} } = await getClient().query( GET_USER, - { userInput: null } + { userInput: null }, ); const user = { ...userMeta, ...userProfile };