Skip to content

Commit

Permalink
Prettierify UploadForm
Browse files Browse the repository at this point in the history
  • Loading branch information
philmcmahon committed Feb 24, 2025
1 parent 394426b commit 0978e51
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/client/src/components/UploadForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ const checkUrlValid = (url_input: string): MediaUrlInput => {
) {
return {
value: url_input,
reason: 'That URL is a link to search results. Please link to a video page',
reason:
'That URL is a link to search results. Please link to a video page',
status: 'invalid',
};
}
Expand Down Expand Up @@ -347,10 +348,10 @@ export const UploadForm = () => {
value="URL(s) for transcription"
/>
<p className="font-light">
Paste the URL of a webpage or social media post containing
the video or audio that you wish to save/transcribe.
Click ‘+ Add URL’ to add multiple URLs.
</p>
Paste the URL of a webpage or social media post containing the
video or audio that you wish to save/transcribe. Click ‘+ Add
URL’ to add multiple URLs.
</p>
</div>
<div className={'ml-3'}>
{mediaUrlInputs.map((input, index) => (
Expand Down Expand Up @@ -385,9 +386,8 @@ export const UploadForm = () => {
</div>
<div className={'mb-4'}>
<Alert color="info">
Material may be protected by copyright. Please only
use this service to get a download for legitimate
journalistic purposes
Material may be protected by copyright. Please only use this
service to get a download for legitimate journalistic purposes
</Alert>
</div>
</>
Expand Down

0 comments on commit 0978e51

Please sign in to comment.