(feedbackRef.current[index] = el)} css={feedbackBoxStyle}>
{mmssFormatter(startTime * ONE_SECOND)}
diff --git a/frontend/src/constants/page.constant.ts b/frontend/src/constants/page.constant.ts
index 6f7999aa..1ad7fb02 100644
--- a/frontend/src/constants/page.constant.ts
+++ b/frontend/src/constants/page.constant.ts
@@ -5,5 +5,5 @@ export enum PAGE_TYPE {
INTERVIEWER_PAGE = 'interviewer',
INTERVIEWEE_PAGE = 'interviewee',
FEEDBACK_PAGE = 'feedback',
- WAITTING_PAGE = 'waitting',
+ WAITTING_PAGE = 'waiting',
}
diff --git a/frontend/src/constants/route.constant.ts b/frontend/src/constants/route.constant.ts
index e359bdcb..c550afec 100644
--- a/frontend/src/constants/route.constant.ts
+++ b/frontend/src/constants/route.constant.ts
@@ -5,5 +5,5 @@ export enum ROUTE_TYPE {
INTERVIEWER_ROUTE = '/interviewer',
INTERVIEWEE_ROUTE = '/interviewee',
FEEDBACK_ROUTE = '/feedback',
- WAITTING_ROUTE = '/waitting',
+ WAITTING_ROUTE = '/waiting',
}
diff --git a/frontend/src/pages/Feedback/Feedback.style.ts b/frontend/src/pages/Feedback/Feedback.style.ts
index aa868d5d..7f92dd66 100644
--- a/frontend/src/pages/Feedback/Feedback.style.ts
+++ b/frontend/src/pages/Feedback/Feedback.style.ts
@@ -7,7 +7,7 @@ export const feedbackWrapperStyle = (theme) => css`
background-color: ${theme.colors.tertiary};
`;
-export const feedbackPageContainerStyle = css`
+export const feedbackContainerStyle = css`
height: 100%;
display: flex;
gap: 25px;
@@ -19,9 +19,9 @@ export const feedbackPageContainerStyle = css`
export const feedbackSyncBtnStyle = (theme, isFbSync) => css`
background-color: ${isFbSync ? theme.colors.primary : theme.colors.white};
- width: 50;
- height: 50;
- border-radius: '25px';
+ width: 50px;
+ height: 50px;
+ border-radius: 50%;
display: 'flex';
justify-content: 'center';
align-items: 'center';
diff --git a/frontend/src/pages/Feedback/Feedback.tsx b/frontend/src/pages/Feedback/Feedback.tsx
index b5e5446c..e1978d53 100644
--- a/frontend/src/pages/Feedback/Feedback.tsx
+++ b/frontend/src/pages/Feedback/Feedback.tsx
@@ -15,7 +15,7 @@ import { ReactComponent as LinkIcon } from '@assets/icon/link.svg';
import { socket } from '../../service/socket';
import {
feedbackWrapperStyle,
- feedbackPageContainerStyle,
+ feedbackContainerStyle,
feedbackAreaStyle,
feedbackSyncBtnStyle,
} from './Feedback.style';
@@ -81,7 +81,7 @@ const Feedback = () => {
return (
-
+