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

QA: 사용자 안내 문구 추가 #40

Merged
merged 2 commits into from
Feb 27, 2024
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
17 changes: 16 additions & 1 deletion components/forms/SignupForm.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import styled from "@emotion/styled"
import Link from "next/link"
import { useRouter } from "next/router"
import { FormEvent, MouseEvent, useEffect, useRef, useState } from "react"

Expand Down Expand Up @@ -181,7 +182,21 @@ const SignupForm = () => {
weight="bold"
color={"--color-green-04"}
/>
<UnderLineInput {...item} key={idx} />
<div>
<UnderLineInput {...item} key={idx} />
{item.name === "dsId" && (
<Link
href="https://fringe-polyester-65b.notion.site/ea0bb733257540c4a8e6196055321540"
target="_blank"
rel="noopener noreferrer"
style={{
color: "rgba(3, 107, 87, 1)",
}}
>
내 디스코드 아이디 확인 방법
</Link>
)}
</div>

{item.name === "dsId" && (
<DsIdCheckButton type="button" onClick={handleDsIdCheck}>
Expand Down
2 changes: 1 addition & 1 deletion components/molecules/LandEdit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const LandEdit = ({ list, setCategory, category }: ILandEdit) => {
if (islandItemExist.length === 0) {
setStateModal({
state: "fail",
text: "카드 게임 플레이를 통해 아이템을 구하세요",
text: "카드 게임으로 아이템을 획득해봐요",
isOpen: true,
})
}
Expand Down
Loading