From 3ace31e65e6e6a86eb06bf69975e320f2f78c891 Mon Sep 17 00:00:00 2001 From: TeerapatChan Date: Fri, 14 Nov 2025 11:55:44 +0700 Subject: [PATCH 1/2] fix: missing use client in link button --- .../v2/components/compound/editor/components/link-button.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/v2/components/compound/editor/components/link-button.tsx b/packages/react/v2/components/compound/editor/components/link-button.tsx index 6c4231af..7ddf1d90 100644 --- a/packages/react/v2/components/compound/editor/components/link-button.tsx +++ b/packages/react/v2/components/compound/editor/components/link-button.tsx @@ -1,3 +1,4 @@ +'use client' import { useCallback } from 'react' import { LinkIcon } from '@phosphor-icons/react' From f55637de53b0255421a4e13514beea6970bf1080 Mon Sep 17 00:00:00 2001 From: Benz <105777142+TeerapatChan@users.noreply.github.com> Date: Fri, 14 Nov 2025 11:57:02 +0700 Subject: [PATCH 2/2] Add changeset for missing use client in link button --- .changeset/fresh-seahorses-sleep.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fresh-seahorses-sleep.md diff --git a/.changeset/fresh-seahorses-sleep.md b/.changeset/fresh-seahorses-sleep.md new file mode 100644 index 00000000..96577610 --- /dev/null +++ b/.changeset/fresh-seahorses-sleep.md @@ -0,0 +1,5 @@ +--- +"@genseki/react": patch +--- + +fix: missing use client in link button