diff --git a/public/Files Dark.svg b/public/Files_Dark.svg
similarity index 100%
rename from public/Files Dark.svg
rename to public/Files_Dark.svg
diff --git a/public/View Code.svg b/public/View Code.svg
deleted file mode 100644
index b46b0d34..00000000
--- a/public/View Code.svg
+++ /dev/null
@@ -1,28 +0,0 @@
-
diff --git a/public/View_Code.svg b/public/View_Code.svg
new file mode 100644
index 00000000..bdf1246a
--- /dev/null
+++ b/public/View_Code.svg
@@ -0,0 +1,77 @@
+
\ No newline at end of file
diff --git a/public/View Code Dark.svg b/public/View_Code_Dark.svg
similarity index 100%
rename from public/View Code Dark.svg
rename to public/View_Code_Dark.svg
diff --git a/src/components/Connection.tsx b/src/components/Connection.tsx
index 47e963a5..dd551378 100644
--- a/src/components/Connection.tsx
+++ b/src/components/Connection.tsx
@@ -107,7 +107,7 @@ export const Connection = (): JSX.Element => {
exit={{ opacity: 0 }}
className="m-auto h-40 w-40 text-green-500"
src={
- appState.darkMode ? '/View Code Dark.svg' : '/View Code.svg'
+ appState.darkMode ? '/View_Code_Dark.svg' : '/View_Code.svg'
}
/>
diff --git a/src/pages/Extensions/FileBrowser.tsx b/src/pages/Extensions/FileBrowser.tsx
index b01f4046..64def8d7 100644
--- a/src/pages/Extensions/FileBrowser.tsx
+++ b/src/pages/Extensions/FileBrowser.tsx
@@ -61,7 +61,7 @@ export const FileBrowser = (): JSX.Element => {
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className="m-auto h-64 w-64 text-green-500"
- src={appState.darkMode ? '/Files Dark.svg' : '/Files.svg'}
+ src={appState.darkMode ? '/Files_Dark.svg' : '/Files.svg'}
/>
)}
diff --git a/src/pages/Extensions/Logs.tsx b/src/pages/Extensions/Logs.tsx
index 4e1f54ee..86e51881 100644
--- a/src/pages/Extensions/Logs.tsx
+++ b/src/pages/Extensions/Logs.tsx
@@ -81,8 +81,8 @@ export const Logs = (): JSX.Element => {
className="m-auto h-64 w-64 text-green-500"
src={
appState.darkMode
- ? '/View Code Dark.svg'
- : '/View Code.svg'
+ ? '/View_Code_Dark.svg'
+ : '/View_Code.svg'
}
/>