Skip to content

Commit

Permalink
fix(qa) QA에서 발견된 오류 수정 (#58)
Browse files Browse the repository at this point in the history
* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* f

* fix

* fix
  • Loading branch information
Collection50 authored and eunbeann committed Aug 30, 2024
1 parent 52b0a0d commit abf4ba9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import type { Metadata } from 'next';
import { QueryProvider } from '@/lib';
import { GoogleProvider } from '@/lib/GoogleProvider';
import '@/styles/globals.css';
import '@/styles/memo.css';
import { cn } from '@/utils';
import { Suspense } from 'react';
import { GoogleProvider } from '@/lib/GoogleProvider';
import type { Metadata } from 'next';
import localFont from 'next/font/local';
import { Suspense } from 'react';

const Pretendard = localFont({
src: './fonts/PretendardVariable.woff2',
Expand Down
4 changes: 2 additions & 2 deletions src/app/login/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
'use client';

import { Redirect } from '@/components/Redirect';
import { useFunnel } from '@/system/components/Funnel/useFunnel';
import { getCookie } from 'cookies-next';
import { Login } from './components/Login';
import { Redirect } from '@/components/Redirect';
import Select from './components/Select';
import { getCookie } from 'cookies-next';
import { ACCESS_TOKEN, JOB_SELECTION, SELECT } from './constants/token';

export default function Page() {
Expand Down
1 change: 0 additions & 1 deletion src/system/components/Icon/Icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ const iconMap = {
folder: Folder,
warning: Warning,
announcementFolder: AnnouncementFolder,
warning: Warning,
} as const;

export interface IconProps extends IconBaseType {
Expand Down

0 comments on commit abf4ba9

Please sign in to comment.