Skip to content

Commit

Permalink
[feat/#58] 로딩 중 문구가 표시되지 않도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
G-hoon committed Oct 8, 2024
1 parent 384518c commit 00394b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Crew/CrewList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const CrewList = (): ReactElement => {
</div>

{/* list */}
{isLoading ? "로딩 중입니다..." : isError ? "데이터를 불러오는데 실패했습니다." : createGroupList(data?.data)}
{isError ? "데이터를 불러오는데 실패했습니다." : createGroupList(data?.data)}
</div>
)
}
Expand Down
6 changes: 2 additions & 4 deletions src/components/Modal/JoinCrewModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const JoinCrewModal = (props: ModalProps): React.ReactElement => {
const [joinCode, setJoinCode] = useState<string>("")
const [isCodeError, setIsCodeError] = useState<boolean>(false)

const { data, isLoading, isError } = useGetGroup(id)
const { data, isError } = useGetGroup(id)
const joinGroupMutation = useJoinGroup()

const onChangeJoinCode = (e: React.ChangeEvent<HTMLInputElement>): void => {
Expand Down Expand Up @@ -75,9 +75,7 @@ const JoinCrewModal = (props: ModalProps): React.ReactElement => {

return (
<ModalContainer onClose={onClose}>
{isLoading ? (
"로딩 중입니다."
) : isError ? (
{isError ? (
"데이터를 불러오지 못했습니다."
) : (
<div className="flex w-full flex-col items-center">
Expand Down
1 change: 0 additions & 1 deletion src/pages/AnalysisDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ const AnalysisDashboard = () => {
</div>
</div>

{isLoading && <div>로딩 중입니다...</div>}
{isError && <div>데이터를 불러오는 것에 실패했습니다</div>}

{!isLoading && !isError && todayAnalysis && (
Expand Down

0 comments on commit 00394b4

Please sign in to comment.