mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
add key
This commit is contained in:
parent
be8a18b163
commit
66cdab4531
1 changed files with 4 additions and 2 deletions
|
|
@ -199,8 +199,9 @@ const ProjectEditForm = ({ project }) => {
|
|||
</Flex>
|
||||
</Label>
|
||||
|
||||
{screenshot.map(image => (
|
||||
{screenshot.map((image, index) => (
|
||||
<div
|
||||
key={index}
|
||||
sx={{
|
||||
display: 'grid',
|
||||
position: 'relative',
|
||||
|
|
@ -261,8 +262,9 @@ const ProjectEditForm = ({ project }) => {
|
|||
</Flex>
|
||||
</Label>
|
||||
|
||||
{video.map(image => (
|
||||
{video.map((image, index) => (
|
||||
<div
|
||||
key={index}
|
||||
sx={{
|
||||
display: 'grid',
|
||||
position: 'relative',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue