Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/#303: 사용하지 않는 파일 삭제 & TipData 타입 변경 #304

Merged
merged 2 commits into from
Dec 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/List/TipCardList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from '@emotion/styled';
import React from 'react';

interface TipCardListProps {
tipList: TipData[];
tipList: readonly TipData[];
tipItemRenderer: (tipItem: TipData) => JSX.Element;
}

Expand Down
4 changes: 2 additions & 2 deletions src/constants/tip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface TipData {
link: string;
}

export const SHORTCUT_DATA: TipData[] = [
export const SHORTCUT_DATA: readonly TipData[] = [
{
title: '부경대학교',
subTitle: '부경대학교\n홈페이지로 이동',
Expand Down Expand Up @@ -58,7 +58,7 @@ export const SHORTCUT_DATA: TipData[] = [
},
] as const;

export const HONEY_TIP_DATA: TipData[] = [
export const HONEY_TIP_DATA: readonly TipData[] = [
{
title: '아우란트검사',
subTitle: '인성·역량·취업준비도\n·진로적성검사',
Expand Down
41 changes: 0 additions & 41 deletions src/hooks/useLocationHandler.ts

This file was deleted.