Update src/components/ModForm.tsx
All checks were successful
Release to Staging / build_and_release (push) Successful in 57s

This commit is contained in:
freakoverse 2025-01-02 21:43:09 +00:00
parent e15307be3b
commit 50d982a3a8

View File

@ -222,7 +222,7 @@ export const ModForm = () => {
<InputField <InputField
label='Featured Image URL' label='Featured Image URL'
description='We recommend to upload images to https://nostr.build/' description='We recommend to upload images to https://imgur.com/upload'
type='text' type='text'
inputMode='url' inputMode='url'
placeholder='Image URL' placeholder='Image URL'
@ -293,7 +293,7 @@ export const ModForm = () => {
</button> </button>
</div> </div>
<p className='labelDescriptionMain'> <p className='labelDescriptionMain'>
We recommend to upload images to https://nostr.build/ We recommend to upload images to https://imgur.com/upload
</p> </p>
{formState.screenshotsUrls.map((url, index) => ( {formState.screenshotsUrls.map((url, index) => (
<Fragment key={`screenShot-${index}`}> <Fragment key={`screenShot-${index}`}>
@ -607,7 +607,7 @@ const ScreenshotUrlFields = React.memo(
type='text' type='text'
className='inputMain' className='inputMain'
inputMode='url' inputMode='url'
placeholder='We recommend to upload images to https://nostr.build/' placeholder='We recommend to upload images to https://imgur.com/upload'
value={url} value={url}
onChange={handleChange} onChange={handleChange}
/> />