Skip to content

Commit

Permalink
Apply Prettier Formatting Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavberi authored and github-actions[bot] committed Jun 15, 2024
1 parent 4c35412 commit 860f48e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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 };

Expand Down

0 comments on commit 860f48e

Please # to comment.