Skip to content

Commit

Permalink
Move UserReviews component to ReviewsPage folder. Remove unused scss …
Browse files Browse the repository at this point in the history
…file
  • Loading branch information
js0mmer committed Oct 10, 2024
1 parent ec6b36f commit aa71c8c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
Empty file.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import axios, { AxiosResponse } from 'axios';
import { FC, useEffect, useState } from 'react';
import SubReview from '../../component/Review/SubReview';
import { Divider } from 'semantic-ui-react';
import { ReviewData } from '../../../src/types/types';
import { ReviewData } from '../../types/types';
import './UserReviews.scss';
import { useCookies } from 'react-cookie';
import { useAppDispatch, useAppSelector } from '../../store/hooks';
Expand Down
3 changes: 1 addition & 2 deletions site/src/pages/ReviewsPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { FC, useEffect, useState } from 'react';
import UserReviews from '../../component/UserReviews/UserReviews';
import UserReviews from './UserReviews';
import Error from '../../component/Error/Error';
import './ReviewsPage.scss';
import { useLocation } from 'react-router-dom';
import { useCookies } from 'react-cookie';

Expand Down

0 comments on commit aa71c8c

Please sign in to comment.