Update index.tsx

This commit is contained in:
Stefan Pejcic 2024-06-01 16:04:53 +02:00 committed by GitHub
parent 955ee5bd4f
commit 04f54deee5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,7 +54,7 @@ const Install: React.FC = () => {
[name]: { ...prevState[name], value: type === "checkbox" ? checked : value }, [name]: { ...prevState[name], value: type === "checkbox" ? checked : value },
})); }));
}; };
const generateInstallCommand = () => { const generateInstallCommand = () => {
let command = "bash <(curl -sSL https://get.openpanel.co/)"; let command = "bash <(curl -sSL https://get.openpanel.co/)";
for (const option in installOptions) { for (const option in installOptions) {
@ -74,6 +74,7 @@ const Install: React.FC = () => {
return command; return command;
}; };