We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38b904d commit fa17240Copy full SHA for fa17240
app/src/components/ContextAPIManager/CreateTab/components/AddContextForm.tsx
@@ -66,9 +66,9 @@ const AddContextForm = ({
66
67
//creating options for context dropdown
68
const contexts = allContext.length ? (
69
- allContext.map((context) => {
+ allContext.map((context, index) => {
70
return (
71
- <MenuItem style={{ color: '#383838'}} value={context.name}>
+ <MenuItem style={{ color: '#383838'}} value={context.name} key={index}>
72
{context.name}
73
</MenuItem>
74
);
0 commit comments