From b97b19971da7b6f55f415ae06712c7a3982ed3c7 Mon Sep 17 00:00:00 2001 From: zihluwang Date: Tue, 24 Feb 2026 11:55:58 +0800 Subject: [PATCH] fix: typo --- src/page/json-grid/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/page/json-grid/index.tsx b/src/page/json-grid/index.tsx index 2b19391..bbca7f9 100644 --- a/src/page/json-grid/index.tsx +++ b/src/page/json-grid/index.tsx @@ -9,7 +9,7 @@ export default function JsonGrid() { const { t } = useTranslation() const initialData = [ - { id: 0, name: "TTY", roles: "CEO", active: true }, + { id: 0, name: "TTY", role: "CEO", active: true }, { id: 1, name: "Alice", role: "Developer", active: true }, { id: 2, name: "Bob", role: "Designer", active: false }, { id: 3, name: "Charlie", role: "Product Manager", active: true },