Skip to content

Commit

Permalink
feat: Linik 태그 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
SeieunYoo committed Jan 14, 2025
1 parent 805da87 commit 40bde4c
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { Text } from "@wow-class/ui";
import { formatISODateWithDot } from "@wow-class/utils";
import { myStudyApi } from "apis/myStudyApi";
import Image from "next/image";
import Link from "next/link";

const MobileStudyAnnouncementPage = async () => {
const myOngoingStudyInfoData = await myStudyApi.getMyOngoingStudyInfo();
Expand All @@ -25,12 +24,10 @@ const MobileStudyAnnouncementPage = async () => {
<Flex direction="column" gap="12px" justifyContent="center">
{studyAnnouncementListData?.length ? (
studyAnnouncementListData?.map(
({ studyAnnounceId, title, link, createdDate }) => (
<Link
({ studyAnnounceId, title, createdDate }) => (
<div
className={studyAnnouncementListBoxStyle}
href={link}
key={studyAnnounceId}
target="_blank"
>
<Text
as="span"
Expand All @@ -42,7 +39,7 @@ const MobileStudyAnnouncementPage = async () => {
<Text as="span" color="sub" typo="body3">
{formatISODateWithDot(createdDate)}
</Text>
</Link>
</div>
)
)
) : (
Expand Down

0 comments on commit 40bde4c

Please sign in to comment.