remove org id from olm command

This commit is contained in:
miloschwartz
2025-12-05 16:28:34 -05:00
parent 8e3b5688d5
commit 149f4c1332

View File

@@ -140,7 +140,7 @@ export default function Page() {
}, },
{ {
title: t("run"), title: t("run"),
command: `sudo olm --id ${id} --secret ${secret} --endpoint ${endpoint} --org ${orgId}` command: `sudo olm --id ${id} --secret ${secret} --endpoint ${endpoint}`
} }
] ]
}, },
@@ -152,7 +152,7 @@ export default function Page() {
}, },
{ {
title: t("run"), title: t("run"),
command: `olm.exe --id ${id} --secret ${secret} --endpoint ${endpoint} --org ${orgId}` command: `olm.exe --id ${id} --secret ${secret} --endpoint ${endpoint}`
} }
] ]
} }