Skip to content

Commit

Permalink
Fix: directory issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AnOldStory committed Apr 28, 2022
1 parent 27f63a4 commit 29971f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect } from 'react';
import Api from './Api';
import Api from './api';

import WantedList from './components/WantedList';
import ListNavBar from './components/ListNavBar';
Expand Down
2 changes: 1 addition & 1 deletion src/components/ListNavBar/index.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import Api from '../../Api';
import Api from '../../api';
import './index.css';

const NavBar = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/WantedList/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import './index.css';

import React from 'react';
import { List } from 'semantic-ui-react';
import Api from '../../Api';
import Api from '../../api';

const CURRENT_CATEGORY = '모두 표시'; // MEAL, COFFEE, ALCOHOL, GAME, ETC
const MAX_NAMES_TO_DISPLAY = 2;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/AddPost.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { Container, Input, Button } from 'semantic-ui-react';
import Api from '../Api';
import Api from '../api';
import NavBar from '../components/ListNavBar';

const AddPost = () => {
Expand Down

0 comments on commit 29971f5

Please sign in to comment.