diff options
| author | joonhoekim <26rote@gmail.com> | 2025-10-24 15:18:36 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-10-24 15:18:36 +0900 |
| commit | 3e85fbde628bb556e5f6a93cafd9ba4d53031461 (patch) | |
| tree | 165726e29fe8a11a437dea06217ec4b202219e23 /lib/swp/table/swp-table.tsx | |
| parent | 912e2bc761d7d57bd33d68cb5050da43dea59636 (diff) | |
(김준회) fix: SWP 초기 개발건 오류 수정
Diffstat (limited to 'lib/swp/table/swp-table.tsx')
| -rw-r--r-- | lib/swp/table/swp-table.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/swp/table/swp-table.tsx b/lib/swp/table/swp-table.tsx index 4024c711..9e8f7f6a 100644 --- a/lib/swp/table/swp-table.tsx +++ b/lib/swp/table/swp-table.tsx @@ -28,7 +28,6 @@ interface SwpTableProps { pageSize: number; totalPages: number; onPageChange: (page: number) => void; - mode?: "admin" | "vendor"; } export function SwpTable({ @@ -38,7 +37,6 @@ export function SwpTable({ pageSize, totalPages, onPageChange, - mode = "admin", }: SwpTableProps) { const [expanded, setExpanded] = useState<ExpandedState>({}); const [revisionData, setRevisionData] = useState<Record<string, RevisionRow[]>>({}); |
