Skip to content

Commit

Permalink
fix: line 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
gayoungyeom committed Mar 15, 2024
1 parent de7b686 commit 3d36f13
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ function Home() {
resetSelected();
}, []);

if (visitorError) return <Error />;

return (
<Body>
<Image src={mainImage} alt="main-character" />
Expand Down
4 changes: 1 addition & 3 deletions src/pages/select.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import { useEffect, useState } from 'react';
import { useState } from 'react';
import { Link, useNavigate, useParams } from 'react-router-dom';
import { useMutation } from 'react-query';
import { useRecoilValue } from 'recoil';
import { Line } from 'rc-progress';
import { selectedAtom } from '../atoms';
import ImageFileUpload from '../components/ImageUpload';
import SelectItems from '../components/SelectItems';
import Header from '../components/Header';
import Modal from '../components/Modal';
import Error from '../components/Error';

import styled from 'styled-components';

Expand Down

0 comments on commit 3d36f13

Please sign in to comment.