@@ -48,6 +48,7 @@ const Footer: React.FC = () => {
{isConnected ? settings.serverAddr : i18n.t('notConnectedText')}
+
diff --git a/frontend/src/components/VersionIndicator.tsx b/frontend/src/components/VersionIndicator.tsx
index 9c6fd5c..0786e1d 100644
--- a/frontend/src/components/VersionIndicator.tsx
+++ b/frontend/src/components/VersionIndicator.tsx
@@ -1,7 +1,7 @@
+import { Chip, CircularProgress } from '@mui/material'
import { useEffect, useState } from 'react'
import { useRecoilValue } from 'recoil'
import { serverURL } from '../atoms/settings'
-import { CircularProgress } from '@mui/material'
import { useToast } from '../hooks/toast'
const VersionIndicator: React.FC = () => {
@@ -26,7 +26,7 @@ const VersionIndicator: React.FC = () => {
return (
version
- ?
yt-dlp v{version}
+ ?
:
)
}