diff --git a/src/components/applications/media-viewer/MediaViewer.jsx b/src/components/applications/media-viewer/MediaViewer.jsx index bc87ab2..a37f6b0 100644 --- a/src/components/applications/media-viewer/MediaViewer.jsx +++ b/src/components/applications/media-viewer/MediaViewer.jsx @@ -10,7 +10,7 @@ import styles from "./MediaViewer.module.css"; */ export function MediaViewer({ file }) { if (file == null) - return (
No file to render.
); + return (Use the File Explorer to open an image.
); if (!["png"].includes(file.extension)) return (Invalid file format.
);