File tree Expand file tree Collapse file tree
src/components/blocked-pubkeys/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,18 +110,20 @@ export const FlaggedPubkeysTable: React.FC<FlaggedPubkeysTableProps> = ({
110110 />
111111 </ div >
112112
113- < S . TableRoot
114- dataSource = { filteredPubkeys }
115- columns = { columns }
116- rowKey = "pubkey"
117- loading = { statsLoading }
118- pagination = { {
119- pageSize : 10 ,
120- showSizeChanger : true ,
121- showTotal : ( total ) => `Total: ${ total } flagged pubkeys` ,
122- } }
123- locale = { { emptyText : statsLoading ?< S . EmptyList > Loading... </ S . EmptyList > : < S . EmptyList > No flagged pubkeys found</ S . EmptyList > } }
124- />
113+ < S . TableContainer >
114+ < S . TableRoot
115+ dataSource = { filteredPubkeys }
116+ columns = { columns }
117+ rowKey = "pubkey"
118+ loading = { statsLoading }
119+ pagination = { {
120+ pageSize : 10 ,
121+ showSizeChanger : true ,
122+ showTotal : ( total ) => `Total: ${ total } flagged pubkeys` ,
123+ } }
124+ locale = { { emptyText : statsLoading ?< S . EmptyList > Loading... </ S . EmptyList > : < S . EmptyList > No flagged pubkeys found</ S . EmptyList > } }
125+ />
126+ </ S . TableContainer >
125127
126128 { /* Block Confirmation Modal */ }
127129 < Modal
You can’t perform that action at this time.
0 commit comments