diff --git a/resources/index.html b/resources/index.html
index 97b48c2..e9637a5 100644
--- a/resources/index.html
+++ b/resources/index.html
@@ -108,7 +108,7 @@
-
+
diff --git a/resources/js/index.js b/resources/js/index.js
index dd07f0c..12314ee 100644
--- a/resources/js/index.js
+++ b/resources/js/index.js
@@ -468,11 +468,14 @@ async function checkForUpdatesAndShow() {
async function displayServerLaunchSection() {
const serverPanel = document.querySelector('#thirdPanel')
+ const bottomBtnSection = document.querySelector('#serverPath').parentElement
if (serverPanel.style.display === 'none') {
serverPanel.style.removeProperty('display')
+ bottomBtnSection.style.removeProperty('display')
} else {
serverPanel.style.display = 'none'
+ bottomBtnSection.style.display = 'none'
}
}