msaisrinivas / BlinkListApp

Missing key for the property JS-0414
Bug risk
Major
a year agoa year old
Missing "key" prop for element in iterator
68        .filter((item) => item.complete in operCheck)
69        .map((card, key) => {
70          return (
71            <Box width={"30%"} paddingTop={"25px"}>72              <Cards73                id={card.id}74                image={card.src}75                bookName={card.title}76                authorName={card.author}77                progress={true}78                librarybu={props.librarybu}79                finished={props.finished}80                readAgain={props.readAgain}81                progressValues={card.complete}82                key={key}83                read={card.numberOfReads}84                time={card.timeTakenToRead}85              ></Cards>86            </Box>87          );
88        })}
89    </Box>