Skip to content
Snippets Groups Projects
Unverified Commit e62eaa6b authored by GyDi's avatar GyDi
Browse files

fix: list key

parent b4cce23e
No related branches found
No related tags found
Loading
...@@ -54,7 +54,7 @@ export const ProviderButton = () => { ...@@ -54,7 +54,7 @@ export const ProviderButton = () => {
{Object.entries(data || {}).map(([key, item]) => { {Object.entries(data || {}).map(([key, item]) => {
const time = dayjs(item.updatedAt); const time = dayjs(item.updatedAt);
return ( return (
<ListItem sx={{ p: 0 }}> <ListItem sx={{ p: 0 }} key={key}>
<ListItemText <ListItemText
primary={key} primary={key}
secondary={ secondary={
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment