Skip to content

Commit

Permalink
fix convention abs path
Browse files Browse the repository at this point in the history
  • Loading branch information
useruseruse committed Mar 25, 2024
1 parent 838a54a commit e2d4751
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
14 changes: 7 additions & 7 deletions src/components/blocks/ReviewBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ import { useTranslation } from 'react-i18next';
import axios from 'axios';
import ReactGA from 'react-ga4';

import { appBoundClassNames as classNames } from '../../common/boundClassNames';
import { getProfessorsShortStr } from '../../utils/lectureUtils';
import { getSingleScoreLabel } from '../../utils/scoreUtils';
import { useTranslatedString } from '../../hooks/useTranslatedString';
import { appBoundClassNames as classNames } from '@/common/boundClassNames';
import { getProfessorsShortStr } from '@/utils/lectureUtils';
import { getSingleScoreLabel } from '@/utils/scoreUtils';
import { useTranslatedString } from '@/hooks/useTranslatedString';

import Review from '@/shapes/model/review/Review';
import BlockLink from '@/shapes/BlockLink';

import { formatNewlineToBr } from '../../utils/commonUtils';
import { getSemesterName } from '../../utils/semesterUtils';
import { CONTACT } from '../../common/constants';
import { formatNewlineToBr } from '@/utils/commonUtils';
import { getSemesterName } from '@/utils/semesterUtils';
import { CONTACT } from '@/common/constants';

interface Props {
review: Review;
Expand Down
8 changes: 4 additions & 4 deletions src/components/blocks/ReviewSimpleBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import React from 'react';
import { Link } from 'react-router-dom';
import { useTranslation } from 'react-i18next';

import { appBoundClassNames as classNames } from '../../common/boundClassNames';
import { isSpecialLecture } from '../../utils/lectureUtils';
import { getSingleScoreLabel } from '../../utils/scoreUtils';
import { getSemesterName } from '../../utils/semesterUtils';
import { appBoundClassNames as classNames } from '@/common/boundClassNames';
import { isSpecialLecture } from '@/utils/lectureUtils';
import { getSingleScoreLabel } from '@/utils/scoreUtils';
import { getSemesterName } from '@/utils/semesterUtils';
import { useTranslatedString } from '@/hooks/useTranslatedString';

import Review from '@/shapes/model/review/Review';
Expand Down
10 changes: 5 additions & 5 deletions src/components/blocks/ReviewWriteBlock.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React, { useState } from 'react';
import { useTranslation } from 'react-i18next';

import { appBoundClassNames as classNames } from '../../common/boundClassNames';
import { getProfessorsShortStr } from '../../utils/lectureUtils';
import { getSingleScoreLabel } from '../../utils/scoreUtils';
import { getSemesterName } from '../../utils/semesterUtils';
import { performSubmitReview } from '../../common/commonOperations';
import { appBoundClassNames as classNames } from '@/common/boundClassNames';
import { getProfessorsShortStr } from '@/utils/lectureUtils';
import { getSingleScoreLabel } from '@/utils/scoreUtils';
import { getSemesterName } from '@/utils/semesterUtils';
import { performSubmitReview } from '@/common/commonOperations';
import { useTranslatedString } from '@/hooks/useTranslatedString';

import Lecture from '@/shapes/model/subject/Lecture';
Expand Down
4 changes: 2 additions & 2 deletions src/components/blocks/SemesterBlock.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react';
import { useTranslation } from 'react-i18next';

import { appBoundClassNames as classNames } from '../../common/boundClassNames';
import { appBoundClassNames as classNames } from '@/common/boundClassNames';

import Semester from '@/shapes/model/subject/Semester';
import { getSemesterName } from '../../utils/semesterUtils';
import { getSemesterName } from '@/utils/semesterUtils';

type SemesterType = Semester | 'ALL';

Expand Down

0 comments on commit e2d4751

Please sign in to comment.