Skip to content

Commit 5f514fc

Browse files
authored
docs: fix duplicate form text in effects page
1 parent 74822be commit 5f514fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/content/learn/synchronizing-with-effects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ export default function Form() {
11121112
const [upper, setUpper] = useState(false);
11131113
return (
11141114
<>
1115-
<button onClick={() => setShow(s => !s)}>form {show ? '숨기기' : '보기'} form</button>
1115+
<button onClick={() => setShow(s => !s)}>form {show ? '숨기기' : '보기'}</button>
11161116
<br />
11171117
<hr />
11181118
{show && (

0 commit comments

Comments
 (0)