fix(admin): restore product visibility and code copying
Independent Staging Quality Gate / validate (push) Successful in 13m47s
Independent Staging Quality Gate / publish (push) Successful in 10m6s

This commit is contained in:
Jesse_Chen
2026-08-17 10:25:16 +08:00
parent 1cbdb774e0
commit 7050f7ee17
5 changed files with 71 additions and 1 deletions
@@ -273,7 +273,10 @@ export default function CodesPage() {
</Typography.Paragraph>
{generated.map((record) => (
<Typography.Paragraph copyable key={record.code}>
<Typography.Paragraph
copyable={{ text: record.code ?? "" }}
key={record.code}
>
<Typography.Text code>{record.code}</Typography.Text>
</Typography.Paragraph>
))}