Skip to content

Commit ff1c8ea

Browse files
committed
Small fixes
1 parent c4ad5b9 commit ff1c8ea

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
---
12
github: AFCMS

src/components/VideoInfoOverlay.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import { HiXMark } from "react-icons/hi2";
2-
import { Dialog, DialogBackdrop, DialogPanel, DialogTitle } from "@headlessui/react";
2+
import {
3+
Dialog,
4+
DialogBackdrop,
5+
DialogPanel,
6+
DialogTitle,
7+
} from "@headlessui/react";
38
import type { MediaInfoMetadata } from "../utils/mediaInfo";
49
import {
510
formatFileSize,
@@ -178,7 +183,9 @@ export default function VideoInfoOverlay({
178183
<span className="shrink-0 whitespace-nowrap text-gray-400">
179184
{t`Codec:`}
180185
</span>
181-
<span className="text-right">{metadata.audioCodec}</span>
186+
<span className="text-right">
187+
{metadata.audioCodec}
188+
</span>
182189
</div>
183190
)}
184191
{metadata.audioBitrate && (

tsconfig.node.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"vite.config.ts",
2626
"vitest.config.ts",
2727
"lingui.config.ts",
28-
"prettier.config.ts"
28+
"prettier.config.ts",
29+
"eslint.config.ts"
2930
],
3031
}

0 commit comments

Comments
 (0)