diff --git a/src/pages/repair/EventDetail.tsx b/src/pages/repair/EventDetail.tsx index 8c883fc..a00da7a 100644 --- a/src/pages/repair/EventDetail.tsx +++ b/src/pages/repair/EventDetail.tsx @@ -1,7 +1,7 @@ import { forwardRef, useEffect, useImperativeHandle, useState } from "react" import type { components } from "../../types/saturday" import { saturdayClient } from "../../utils/client" -import { Textarea, Input, Chip } from "@heroui/react" +import { Textarea, Input, Chip, Skeleton } from "@heroui/react" import type { PublicMember } from "../../store/member" import dayjs from "dayjs" import { EventStatus, UserEventAction } from "../../types/event" @@ -182,7 +182,22 @@ const EventDetail = forwardRef ) - :
+ : ( +
+ +
+ + +
+ + +
+ + +
+ +
+ ) ) })