Skip to content

Commit

Permalink
Add missing import for Head
Browse files Browse the repository at this point in the history
  • Loading branch information
cubetastic33 committed Nov 14, 2023
1 parent d864166 commit ddab44d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/app/home.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { createServerSideHelpers } from '@trpc/react-query/server';
import { GetServerSidePropsContext } from 'next';
import Head from 'next/head';
import { getServerSession } from 'next-auth';
import superjson from 'superjson';
import Head from 'next/head';

import { appRouter } from '@/server/trpc/router/_app';
import { createContextInner } from '@server/trpc/context';
Expand Down
2 changes: 1 addition & 1 deletion src/pages/app/onboarding.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { SemesterType } from '@prisma/client';
import { createServerSideHelpers } from '@trpc/react-query/server';
import { GetServerSidePropsContext } from 'next';
import Head from 'next/head';
import { useRouter } from 'next/router';
import { getServerSession } from 'next-auth/next';
import React, { useEffect, useState } from 'react';
import superjson from 'superjson';
import Head from 'next/head';

import Button from '@/components/Button';
import Welcome, { WelcomeTypes } from '@/components/onboarding/welcome';
Expand Down
2 changes: 1 addition & 1 deletion src/pages/app/profile.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import Head from 'next/head';
import * as React from 'react';

import ProfilePage from '@/components/home/Profile';

Expand Down
1 change: 1 addition & 0 deletions src/pages/auth/login.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { InferGetServerSidePropsType } from 'next';
import Head from 'next/head';
import Link from 'next/link';
import { useRouter } from 'next/router';
import { getProviders, signIn, useSession } from 'next-auth/react';
Expand Down

0 comments on commit ddab44d

Please sign in to comment.