We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dde0f1a commit ca11f3dCopy full SHA for ca11f3d
src/components/UploadImage.tsx
@@ -95,7 +95,7 @@ const Upload: React.FC = () => {
95
color="text.secondary"
96
sx={{ display: { xs: 'none', sm: 'block' } }}
97
>
98
- Drag and drop images here or
+ Drag and drop media files here or
99
</Typography>
100
101
<Button
@@ -126,7 +126,7 @@ const Upload: React.FC = () => {
126
</Button>
127
{isPending && (
128
<Typography color="text.secondary">
129
- {`Uploading ${selectedFilesCount} image${
+ {`Uploading ${selectedFilesCount} media file${
130
selectedFilesCount > 1 ? 's' : ''
131
}`}
132
0 commit comments