diff --git a/apps/client/src/translations/en/translation.json b/apps/client/src/translations/en/translation.json
index abd12b6986..fdd6f9fb2d 100644
--- a/apps/client/src/translations/en/translation.json
+++ b/apps/client/src/translations/en/translation.json
@@ -1036,7 +1036,7 @@
"file_preview_not_available": "File preview is not available for this file format.",
"too_big": "The preview only shows the first {{maxNumChars}} characters of the file for performance reasons. Download the file and open it externally to be able to see the entire content."
},
- "video": {
+ "media": {
"play": "Play (Space)",
"pause": "Pause (Space)",
"back-10s": "Back 10s (Left arrow key)",
diff --git a/apps/client/src/widgets/type_widgets/file/Audio.tsx b/apps/client/src/widgets/type_widgets/file/Audio.tsx
index 676997fd63..36eda0b774 100644
--- a/apps/client/src/widgets/type_widgets/file/Audio.tsx
+++ b/apps/client/src/widgets/type_widgets/file/Audio.tsx
@@ -27,7 +27,7 @@ export default function AudioPreview({ note }: { note: FNote }) {
const onError = useCallback(() => setError(true), []);
if (error) {
- return ;
+ return ;
}
return (
@@ -53,9 +53,9 @@ export default function AudioPreview({ note }: { note: FNote }) {