Skip to content

Commit

Permalink
re-linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jthrilly committed Oct 10, 2023
1 parent a3cd4f7 commit c6452de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ import '~/styles/globals.scss';
import Providers from '../providers/Providers';
import RedirectWrapper from '~/components/RedirectWrapper';
import { trpc } from './_trpc/server';
import type { Session } from 'lucia';

export const metadata = {
title: 'Network Canvas Fresco',
description: 'Fresco.',
};

async function RootLayout({ children }: { children: React.ReactNode }) {
const session = (await trpc.session.get.query(undefined, {
const session = await trpc.session.get.query(undefined, {
context: {
revalidate: 0,
},
})) as Session | null;
});

const { expired, configured } =
await trpc.appSettings.get.allappSettings.query(undefined, {
context: {
Expand Down

0 comments on commit c6452de

Please sign in to comment.