Skip to content

Commit

Permalink
fix: list key
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzgydi committed Aug 5, 2023
1 parent b4cce23 commit e62eaa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/proxy/provider-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const ProviderButton = () => {
{Object.entries(data || {}).map(([key, item]) => {
const time = dayjs(item.updatedAt);
return (
<ListItem sx={{ p: 0 }}>
<ListItem sx={{ p: 0 }} key={key}>
<ListItemText
primary={key}
secondary={
Expand Down

0 comments on commit e62eaa6

Please sign in to comment.