Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/UploadImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const Upload: React.FC = () => {
color="text.secondary"
sx={{ display: { xs: 'none', sm: 'block' } }}
>
Drag and drop images here or
Drag and drop media files here or
</Typography>

<Button
Expand Down Expand Up @@ -126,7 +126,7 @@ const Upload: React.FC = () => {
</Button>
{isPending && (
<Typography color="text.secondary">
{`Uploading ${selectedFilesCount} image${
{`Uploading ${selectedFilesCount} media file${
selectedFilesCount > 1 ? 's' : ''
}`}
</Typography>
Expand Down
Loading