Skip to content

Commit

Permalink
refactor: (#740) 알림 리스트가 포함된 알림 컨테이너 폴더 이동
Browse files Browse the repository at this point in the history
- component/common > component
  • Loading branch information
chsua committed Oct 16, 2023
1 parent e1f8576 commit 9a740e3
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import ContentAlarmList from './ContentAlarmList';
import ReportAlarmList from './ReportAlarmList';
import * as S from './style';

const CONTENT = 'content';
const REPORT = 'report';
const CONTENT = '알림';
const REPORT = '신고';

interface AlarmContainerProps {
style?: CSSProperties;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/common/WideHeader/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { useReadLatestAlarm } from '@hooks/query/user/useReadLatestAlarm';

import { PATH } from '@constants/path';

import AlarmContainer from '../../AlarmContainer';
import AlarmIconButton from '../ActiveContainer';
import AlarmContainer from '../AlarmContainer';
import IconButton from '../IconButton';
import LogoButton from '../LogoButton';
import SearchBar from '../SearchBar';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/HomePage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { useDrawer } from '@hooks/useDrawer';

import ErrorBoundary from '@pages/ErrorBoundary';

import AlarmContainer from '@components/AlarmContainer';
import AddButton from '@components/common/AddButton';
import AlarmContainer from '@components/common/AlarmContainer';
import AppInstallPrompt from '@components/common/AppInstallPrompt';
import Banner from '@components/common/Banner';
import Dashboard from '@components/common/Dashboard';
Expand Down

0 comments on commit 9a740e3

Please sign in to comment.