fix(mod): field duplication and focus issue
This commit is contained in:
parent
82b4774174
commit
9c580c5ef5
@ -419,7 +419,7 @@ export const ModForm = ({ existingModData }: ModFormProps) => {
|
||||
We recommend to upload images to https://nostr.build/
|
||||
</p>
|
||||
{formState.screenshotsUrls.map((url, index) => (
|
||||
<Fragment key={`screenShot-${url}`}>
|
||||
<Fragment key={`screenShot-${index}`}>
|
||||
<ScreenshotUrlFields
|
||||
index={index}
|
||||
url={url}
|
||||
@ -468,12 +468,12 @@ export const ModForm = ({ existingModData }: ModFormProps) => {
|
||||
</div>
|
||||
<p className='labelDescriptionMain'>
|
||||
You can upload your game mod to Github, as an example, and keep
|
||||
updating it there (another option is catbox.moe). Also, it's advisable that you hash your package as
|
||||
well with your nostr public key.
|
||||
updating it there (another option is catbox.moe). Also, it's advisable
|
||||
that you hash your package as well with your nostr public key.
|
||||
</p>
|
||||
|
||||
{formState.downloadUrls.map((download, index) => (
|
||||
<Fragment key={`download-${download.url}`}>
|
||||
<Fragment key={`download-${index}`}>
|
||||
<DownloadUrlFields
|
||||
index={index}
|
||||
url={download.url}
|
||||
|
Loading…
Reference in New Issue
Block a user